mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-25 21:37:45 +00:00
15 lines
295 B
C#
15 lines
295 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using OMI.Formats.Pck;
|
|
|
|
namespace PckStudio.Interfaces
|
|
{
|
|
internal interface IPckFileSerializer<T>
|
|
{
|
|
public void Serialize(T obj, ref PckFileData file);
|
|
}
|
|
}
|