mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 21:15:29 +00:00
10 lines
176 B
C#
10 lines
176 B
C#
using OMI.Formats.Pck;
|
|
|
|
namespace PckStudio.Interfaces
|
|
{
|
|
public interface IPckAssetSerializer<T>
|
|
{
|
|
public void Serialize(T obj, ref PckAsset asset);
|
|
}
|
|
}
|