Files
PCK-Studio/PCK-Studio/Interfaces/IPckDeserializer.cs
2024-04-21 13:20:13 +02:00

14 lines
277 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 IPckDeserializer<T>
{
public T Deserialize(PckAsset file);
}
}