reorgenized

This commit is contained in:
DerTyp187
2021-10-07 11:04:37 +02:00
parent 178534b33e
commit 2d80c110a9
6 changed files with 159 additions and 148 deletions

View File

@@ -0,0 +1,10 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BuildingsRegistry : MonoBehaviour
{
[SerializeField] private List<GameObject> registered_buildings = new List<GameObject>();
}