mirror of
https://github.com/DerTyp7/fps-citybuild-unity.git
synced 2025-11-01 05:32:29 +01:00
11 lines
226 B
C#
11 lines
226 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class BuildingsRegistry : MonoBehaviour
|
|
{
|
|
[SerializeField] private List<GameObject> registered_buildings = new List<GameObject>();
|
|
|
|
|
|
}
|