CtrEditor/SimulationState.cs

25 lines
497 B
C#
Raw Permalink Normal View History

2024-05-02 11:06:45 -03:00
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
}
}
}