namespace SabreTools.Models.ClrMamePro
{
/// input
public class Input
{
/// players, Numeric?/remarks>
public string Players { get; set; }
/// control
public string? Control { get; set; }
/// buttons, Numeric
public string Buttons { get; set; }
/// coins, Numeric
public string? Coins { get; set; }
/// tilt, (yes|no) "no"
public string? Tilt { get; set; }
/// service, (yes|no) "no"
public string? Service { get; set; }
#region DO NOT USE IN PRODUCTION
/// Should be empty
public object[]? ADDITIONAL_ELEMENTS { get; set; }
#endregion
}
}