15 lines
287 B
C#
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; }
|
|
}
|
|
} |