Files
SabreTools/SabreTools.IO/Enums.cs
2020-12-07 15:08:57 -08:00

28 lines
479 B
C#

namespace SabreTools.IO
{
/// <summary>
/// Different types of CMP rows being parsed
/// </summary>
public enum CmpRowType
{
None,
TopLevel,
Standalone,
Internal,
Comment,
EndTopLevel,
}
/// <summary>
/// Different types of INI rows being parsed
/// </summary>
public enum IniRowType
{
None,
SectionHeader,
KeyValue,
Comment,
Invalid,
}
}