2023-07-27 22:27:12 -04:00
|
|
|
namespace SabreTools.Models.ClrMamePro
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>input</remarks>
|
|
|
|
|
public class Input
|
|
|
|
|
{
|
2023-08-10 12:09:29 -04:00
|
|
|
/// <remarks>players, Numeric/remarks>
|
|
|
|
|
[Required]
|
|
|
|
|
public string? Players { get; set; }
|
2023-07-27 22:27:12 -04:00
|
|
|
|
|
|
|
|
/// <remarks>control</remarks>
|
|
|
|
|
public string? Control { get; set; }
|
|
|
|
|
|
2023-08-01 23:18:53 -04:00
|
|
|
/// <remarks>buttons, Numeric</remarks>
|
2023-08-10 12:09:29 -04:00
|
|
|
[Required]
|
|
|
|
|
public string? Buttons { get; set; }
|
2023-07-27 22:27:12 -04:00
|
|
|
|
2023-08-01 23:18:53 -04:00
|
|
|
/// <remarks>coins, Numeric</remarks>
|
2023-07-27 22:27:12 -04:00
|
|
|
public string? Coins { get; set; }
|
|
|
|
|
|
2023-08-01 23:18:53 -04:00
|
|
|
/// <remarks>tilt, (yes|no) "no"</remarks>
|
2023-07-27 22:27:12 -04:00
|
|
|
public string? Tilt { get; set; }
|
|
|
|
|
|
2023-08-01 23:18:53 -04:00
|
|
|
/// <remarks>service, (yes|no) "no"</remarks>
|
2023-07-27 22:27:12 -04:00
|
|
|
public string? Service { get; set; }
|
|
|
|
|
|
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
public object[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|