Files
fps-citybuild-unity/Assets/Buildings/Scripts/BuildingsRegistry.cs
DerTyp187 e058b1ce5b idk
2021-10-07 19:08:00 +02:00

14 lines
316 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BuildingsRegistry : MonoBehaviour
{
[SerializeField] private List<GameObject> registered_buildings = new List<GameObject>();
public List<GameObject> GetRegistry()
{
return registered_buildings;
}
}