mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
31 lines
806 B
C#
31 lines
806 B
C#
|
|
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; }
|
||
|
|
|
||
|
|
/// <remarks>tilt</remarks>
|
||
|
|
public string? Tilt { get; set; }
|
||
|
|
|
||
|
|
/// <remarks>service</remarks>
|
||
|
|
public string? Service { get; set; }
|
||
|
|
|
||
|
|
#region DO NOT USE IN PRODUCTION
|
||
|
|
|
||
|
|
/// <remarks>Should be empty</remarks>
|
||
|
|
public object[]? ADDITIONAL_ELEMENTS { get; set; }
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|
||
|
|
}
|