Files
2026-03-03 05:27:03 +05:00

15 lines
287 B
C#

using Newtonsoft.Json.Linq;
namespace UHFPS.Runtime
{
public interface ISaveable
{
StorableCollection OnSave();
void OnLoad(JToken data);
}
public interface IRuntimeSaveable : ISaveable
{
UniqueID UniqueID { get; set; }
}
}