using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CtrEditor { public class SimulationState { // public List Objects { get; set; } = new List(); public void SaveState(string path) { // Serializar estado a JSON } public void LoadState(string path) { // Deserializar estado desde JSON } } }