Files
SabreTools.Serialization/SabreTools.Data.Models/WAD3/FileEntry.cs

12 lines
307 B
C#
Raw Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.WAD3
2025-09-26 10:57:15 -04:00
{
/// <summary>
/// qlumpy always align entries to the DWORD (=4 bytes) boundary
/// (i.e. next integer multiples of 4 offset from start of file)
/// </summary>
public abstract class FileEntry
{
// No shared fields between types
}
2025-10-30 23:50:44 -04:00
}