mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 13:45:35 +00:00
23 lines
408 B
C#
23 lines
408 B
C#
namespace BinaryObjectScanner.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public class File4
|
|
{
|
|
public uint NameOffset;
|
|
|
|
public string Name;
|
|
|
|
public uint Offset;
|
|
|
|
public uint SizeOnDisk;
|
|
|
|
public uint Size;
|
|
|
|
public uint TimeModified;
|
|
|
|
public byte Dummy0;
|
|
|
|
public byte Type;
|
|
}
|
|
}
|