mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-09-21 22:25:53 +00:00
This is being done to avoid any API-breaking changes in the future. If the values are set explicitly, added values either need to force a major version update or get added as the next-highest values.
16 lines
301 B
C#
16 lines
301 B
C#
namespace SabreTools.Text.ClrMamePro
|
|
{
|
|
/// <summary>
|
|
/// Different types of CMP rows being parsed
|
|
/// </summary>
|
|
public enum CmpRowType
|
|
{
|
|
None = 0,
|
|
TopLevel = 1,
|
|
Standalone = 2,
|
|
Internal = 3,
|
|
Comment = 4,
|
|
EndTopLevel = 5,
|
|
}
|
|
}
|