This commit is contained in:
Janis
2023-02-15 20:16:18 +01:00
parent d4b8758291
commit 3b50e5062f
87 changed files with 16787 additions and 3762 deletions

11
Assets/Scripts/House.cs Normal file
View File

@@ -0,0 +1,11 @@
using UnityEngine;
using UnityEngine.Tilemaps;
public class House : Building
{
public override void OnPlace()
{
}
}