mirror of
https://github.com/DerTyp7/traffic-unity.git
synced 2025-10-29 12:52:09 +01:00
12 lines
195 B
C#
12 lines
195 B
C#
using UnityEngine;
|
|
|
|
public class StreetContainer : MonoBehaviour
|
|
{
|
|
public GameObject streetObject;
|
|
|
|
public void Place()
|
|
{
|
|
streetObject.GetComponent<Street>().Place();
|
|
}
|
|
}
|