diff options
Diffstat (limited to 'Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs')
| -rw-r--r-- | Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs b/Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs new file mode 100644 index 0000000..29a18b5 --- /dev/null +++ b/Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs @@ -0,0 +1,25 @@ +using System; + +namespace Rewired; + +public sealed class FlightPedalsTemplate : ControllerTemplate, IFlightPedalsTemplate, IControllerTemplate +{ + public static readonly Guid typeGuid = new Guid("f6fe76f8-be2a-4db2-b853-9e3652075913"); + + public const int elementId_leftPedal = 0; + + public const int elementId_rightPedal = 1; + + public const int elementId_slide = 2; + + IControllerTemplateAxis IFlightPedalsTemplate.leftPedal => GetElement<IControllerTemplateAxis>(0); + + IControllerTemplateAxis IFlightPedalsTemplate.rightPedal => GetElement<IControllerTemplateAxis>(1); + + IControllerTemplateAxis IFlightPedalsTemplate.slide => GetElement<IControllerTemplateAxis>(2); + + public FlightPedalsTemplate(object payload) + : base(payload) + { + } +} |
