Files
traffic-unity/Assets/Scripts/PrefabDictionary.cs
Janis fe2da27074 dfg
2022-12-14 21:47:16 +01:00

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;
}
}