using System.Collections.Generic; using UnityEngine; public class GridSpace : ScriptableObject { public Crop Crop { get; set; } public List GameItems { get; set; } public InteractableItem InteractableItem { get; set; } public void Initialize(Vector2Int vector2Int) { Debug.Log("GridSpace Initialize"); Crop = null; GameItems = new List(); InteractableItem = null; } }