Files

11 lines
241 B
C#
Raw Permalink Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.XZP
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/XZPFile.h"/>
public sealed class Footer
{
public uint FileLength;
public string Signature;
}
}