10 lines
197 B
C#
10 lines
197 B
C#
using Newtonsoft.Json.Linq;
|
|
|
|
namespace UHFPS.Runtime
|
|
{
|
|
public interface ISaveableCustom
|
|
{
|
|
StorableCollection OnCustomSave();
|
|
void OnCustomLoad(JToken data);
|
|
}
|
|
} |