Added new art, also added stairs and walls to building menu

This commit is contained in:
2026-04-12 13:22:07 +01:00
parent 2222294a79
commit 56a432ad66
16 changed files with 781 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
using UnityEngine;
namespace Fruitomation.Game
{
public class Building : MonoBehaviour
{
[Header("Building Properties")]
[SerializeField] private Sprite BuildingSprite;
[field: SerializeField] public Vector2Int SizeOnGrid { get; private set; }
public Sprite Sprite => BuildingSprite;
}
}