1
0
mirror of synced 2024-12-13 16:21:10 +01:00
Switch-Toolbox/File_Format_Library/FileFormats/DKCTF/PAK.cs
2019-08-16 18:07:03 -04:00

21 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;
}
}