mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 21:55:30 +00:00
9 lines
165 B
C#
9 lines
165 B
C#
using OMI.Formats.Pck;
|
|
|
|
namespace PckStudio.Interfaces
|
|
{
|
|
public interface IPckAssetDeserializer<T>
|
|
{
|
|
public T Deserialize(PckAsset asset);
|
|
}
|
|
} |