using System.Collections.Generic; using UnityEngine; namespace DDD { // [CreateAssetMenu(fileName = "FILENAME", menuName = "MENUNAME", order = 0)] public class RestaurantEnvironmentState : ScriptableObject { // TODO : Public??? public List RestaurantEnvironmentProps = new List(); public List RestaurantEnvironmentObjects = new List(); } }