Files
beyond/Assets/ThirdParty/FullSerializer/Source/Aot/fsIAotConverter.cs
2024-11-20 15:21:28 +01:00

12 lines
324 B
C#

using System;
namespace FullSerializer {
/// <summary>
/// Interface that AOT generated converters extend. Used to check to see if
/// the AOT converter is up to date.
/// </summary>
public interface fsIAotConverter {
Type ModelType { get; }
fsAotVersionInfo VersionInfo { get; }
}
}