Files
PCK-Studio/PckStudio.Core/Interfaces/IPckAssetSerializer.cs

10 lines
176 B
C#

using OMI.Formats.Pck;
namespace PckStudio.Interfaces
{
public interface IPckAssetSerializer<T>
{
public void Serialize(T obj, ref PckAsset asset);
}
}