Files
SabreTools/SabreTools.IO/Readers/Enums.cs
2020-12-09 23:11:10 -08:00

28 lines
487 B
C#

namespace SabreTools.IO.Readers
{
/// <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,
}
}