CtrEditor/SimulationState.cs

25 lines
497 B
C#

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