Add new CMP test file, fix issues

This commit is contained in:
Matt Nadareski
2023-07-27 22:27:12 -04:00
parent de2db1516b
commit 064903cdbc
19 changed files with 10959 additions and 69 deletions

View File

@@ -0,0 +1,22 @@
namespace SabreTools.Models.ClrMamePro
{
/// <remarks>dipswitch</remarks>
public class DipSwitch
{
/// <remarks>name</remarks>
public string Name { get; set; }
/// <remarks>entry</remarks>
public string[]? Entry { get; set; }
/// <remarks>default</remarks>
public string? Default { get; set; }
#region DO NOT USE IN PRODUCTION
/// <remarks>Should be empty</remarks>
public object[]? ADDITIONAL_ELEMENTS { get; set; }
#endregion
}
}