Added new art, also added stairs and walls to building menu
This commit is contained in:
13
Assets/Scripts/Game/Buildings/Building.cs
Normal file
13
Assets/Scripts/Game/Buildings/Building.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user