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(); }