Files
SabreTools.Models/SGA/FileHeader.cs

15 lines
317 B
C#
Raw Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.SGA
2023-09-04 00:11:04 -04:00
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
public sealed class FileHeader
{
2023-09-04 21:14:41 -04:00
#if NET48
2023-09-10 21:24:10 -04:00
public string Name { get; set; }
2023-09-04 21:14:41 -04:00
#else
2023-09-10 21:24:10 -04:00
public string? Name { get; set; }
2023-09-04 21:14:41 -04:00
#endif
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint CRC32 { get; set; }
2023-09-04 00:11:04 -04:00
}
}