2023-07-27 22:27:12 -04:00
|
|
|
namespace SabreTools.Models.ClrMamePro
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>input</remarks>
|
|
|
|
|
public class Input
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>players, Numeric?</remarks>
|
|
|
|
|
public string Players { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>control</remarks>
|
|
|
|
|
public string? Control { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>buttons, Numeric?</remarks>
|
|
|
|
|
public string Buttons { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>coins, Numeric?</remarks>
|
|
|
|
|
public string? Coins { get; set; }
|
|
|
|
|
|
2023-07-28 00:44:10 -04:00
|
|
|
/// <remarks>tilt, Boolean?</remarks>
|
2023-07-27 22:27:12 -04:00
|
|
|
public string? Tilt { get; set; }
|
|
|
|
|
|
2023-07-28 00:44:10 -04:00
|
|
|
/// <remarks>service, Boolean?</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
|
|
|
|
|
}
|
|
|
|
|
}
|