summaryrefslogtreecommitdiff
path: root/Runtime/Export/Serialization/IPPtrRemapper.cs
blob: 047615c14ab2f935dfb6acd435b112b6db833138 (plain)
1
2
3
4
5
6
7
8
9
namespace UnityEngine
{
#if ENABLE_SERIALIZATION_BY_CODEGENERATION
	public interface IPPtrRemapper
	{
		object GetNewInstanceToReplaceOldInstance(object value);
	}
#endif
}