BOS.* -> BOS.*

This commit is contained in:
Matt Nadareski
2023-03-07 16:59:14 -05:00
parent e32b24c9f6
commit 473cbc5694
591 changed files with 1214 additions and 1214 deletions

View File

@@ -0,0 +1,20 @@
namespace BinaryObjectScanner.Models.SGA
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
public abstract class Section<T>
{
public string Alias;
public string Name;
public T FolderStartIndex;
public T FolderEndIndex;
public T FileStartIndex;
public T FileEndIndex;
public T FolderRootIndex;
}
}