mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
IO namespace
This commit is contained in:
27
SabreTools.Library/IO/Enums.cs
Normal file
27
SabreTools.Library/IO/Enums.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
namespace SabreTools.Library.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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user