mirror of
https://github.com/DerTyp7/traffic-unity.git
synced 2025-10-29 12:52:09 +01:00
16 lines
313 B
C#
16 lines
313 B
C#
using UnityEngine;
|
|
public class PrefabDictionary : MonoBehaviour
|
|
{
|
|
public static PrefabDictionary instance;
|
|
|
|
public GameObject nodePrefab;
|
|
public GameObject oneWayStreetPSO;
|
|
public GameObject oneWayStreet;
|
|
|
|
void Awake()
|
|
{
|
|
if (instance == null)
|
|
instance = this;
|
|
}
|
|
}
|