From 13423ac461278eefcc577dad825d06ea5f4bd84a Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 23 Apr 2017 13:25:12 -0400 Subject: [PATCH] woops --- .../Consoles/Nintendo/GBA/GBA.cs | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/GBA.cs diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/GBA.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/GBA.cs new file mode 100644 index 0000000000..9d1f8294d8 --- /dev/null +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/GBA.cs @@ -0,0 +1,31 @@ +using BizHawk.Emulation.Common; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace BizHawk.Emulation.Cores.Nintendo.GBA +{ + public static class GBA + { + public static readonly ControllerDefinition GBAController = new ControllerDefinition + { + Name = "GBA Controller", + BoolButtons = + { + "Up", "Down", "Left", "Right", "Start", "Select", "B", "A", "L", "R", "Power" + }, + FloatControls = + { + "Tilt X", "Tilt Y", "Tilt Z", "Light Sensor" + }, + FloatRanges = + { + new[] { -32767f, 0f, 32767f }, + new[] { -32767f, 0f, 32767f }, + new[] { -32767f, 0f, 32767f }, + new[] { 0f, 100f, 200f }, + } + }; + } +}