MonsterShop/Assets/Scripts/DataPersistence/Data/ShelfData.cs

12 lines
234 B
C#

using UnityEngine;
[System.Serializable]
public class ShelfData
{
public string type = "shelf";
public Vector2 location = Vector2.zero;
public float angle = 0;
public InventoryData inventory = new InventoryData();
}