using UnityEngine; using System.Collections.Generic; namespace Fungus { [System.Serializable] public class SaveGameObjects { [SerializeField] protected List flowcharts = new List(); #region Public methods public List Flowcharts { get { return flowcharts; } } #endregion } }