bug fixes

This commit is contained in:
DerTyp187
2021-09-25 19:25:18 +02:00
parent 904b534695
commit 880e5a2424
98 changed files with 4080 additions and 243 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class HouseBuildingScript : Building
{
[SerializeField] private string title = "House";
[SerializeField] private string description = "A place for people to live in.";
public override string GetTitle()
{
return title;
}
public override string GetDescription()
{
return description;
}
}