namespace SabreTools.Models.ClrMamePro
{
/// input
public class Input
{
/// players, Numeric?
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, Boolean?
public string? Tilt { get; set; }
/// service, Boolean?
public string? Service { get; set; }
#region DO NOT USE IN PRODUCTION
/// Should be empty
public object[]? ADDITIONAL_ELEMENTS { get; set; }
#endregion
}
}