mirror of
https://github.com/DerTyp7/traffic-unity.git
synced 2025-10-30 05:07:10 +01:00
14 lines
238 B
C#
14 lines
238 B
C#
using UnityEngine;
|
|
public class PrefabDictionary : MonoBehaviour
|
|
{
|
|
public static PrefabDictionary instance;
|
|
|
|
public GameObject nodePrefab;
|
|
|
|
void Awake()
|
|
{
|
|
if (instance == null)
|
|
instance = this;
|
|
}
|
|
}
|