summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs')
-rw-r--r--Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs b/Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs
deleted file mode 100644
index 29a18b5..0000000
--- a/Thronefall_1_57/Decompile/Rewired/FlightPedalsTemplate.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-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)
- {
- }
-}