Switch-Toolbox/File_Format_Library/FileFormats/DKCTF/PAK.cs
2019-08-16 18:07:03 -04:00

20 lines
338 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
namespace DKCTF
{
public class PAK
{
}
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public class PakHeader
{
CFormDescriptor PackForm;
}
}