add gruid buildingsystem

This commit is contained in:
Janis
2023-02-15 19:39:10 +01:00
parent 4572b0dc27
commit d4b8758291
13 changed files with 394 additions and 74 deletions

View File

@@ -9,8 +9,8 @@ public class PlaceableObject : ScriptableObject
public int width;
public int height;
public void Place()
public Vector3Int GetSizeVector()
{
Debug.Log("PLACE");
return new Vector3Int(width, height, 1);
}
}