Organised and added fan art

This commit is contained in:
2026-03-31 11:52:26 +01:00
parent dbd7414f8f
commit b92f4d1189
25 changed files with 235 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
using UnityEngine;
namespace Fruitomation.Game
{
public abstract class BuildingBase : MonoBehaviour
{
[Header("Building Properties")]
[SerializeField] private Texture2D BuildingTexture;
[field: SerializeField] public Vector2Int SizeOnGrid { get; private set; }
}
}