started working on Building rework

This commit is contained in:
DerTyp187
2021-10-03 18:34:14 +02:00
parent 75a6f34ece
commit 881364449b
47 changed files with 523 additions and 416 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public abstract class Building : MonoBehaviour
{
public string title = "New Building";
public string description = "A cool new building";
public enum BuildingType
{
Housing,
Storage,
Decoration
}
public BuildingType buildingType;
}