Files
SimonSayeBabu bd1057cec0 first commit
2025-01-17 13:10:20 +01:00

13 lines
353 B
C#

using System;
namespace UnityEngine.TestTools.NUnitExtensions
{
internal interface IStateSerializer
{
ScriptableObject RestoreScriptableObjectInstance();
void RestoreClassFromJson(ref object instance);
bool CanRestoreFromJson(Type requestedType);
bool CanRestoreFromScriptableObject(Type requestedType);
}
}