penis/Library/PackageCache/com.unity.test-framework@f4d49bd0d832/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03: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);
}
}