├── 360Controller ├── 360Controller.xcodeproj │ └── project.pbxproj ├── ChatPad.cpp ├── ChatPad.h ├── ControlStruct.h ├── Controller.cpp ├── Controller.h ├── English.lproj │ └── InfoPlist.strings ├── Info copy.plist ├── Info.plist ├── _60Controller.cpp ├── _60Controller.h ├── chatpadhid.h ├── chatpadkeys.cpp ├── chatpadkeys.h ├── version.plist └── xbox360hid.h ├── 360Daemon ├── 360Daemon.1 ├── 360Daemon.m ├── 360Daemon.xcodeproj │ └── project.pbxproj ├── 360Daemon_Prefix.pch ├── Alert.tif ├── ControlPrefs.h ├── ControlPrefs.m ├── FoundationTool.pbproj │ └── project.pbxproj └── com.mice.360Daemon.plist ├── DriverTool ├── DriverTool.1 ├── DriverTool.m ├── DriverTool.xcodeproj │ └── project.pbxproj └── DriverTool_Prefix.pch ├── Feedback360 ├── English.lproj │ └── InfoPlist.strings ├── Feedback360.xcodeproj │ ├── colin.mode1 │ └── project.pbxproj ├── Info.plist ├── devlink.c ├── devlink.h ├── emulator.c ├── emulator.h ├── main.c ├── main.h └── version.plist ├── Install360Controller ├── Install360Controller.pkgproj ├── Scripts │ ├── finish.sh │ └── upgrade.sh └── Text │ └── Welcome.rtf ├── Licence.txt ├── Pref360Control ├── DeviceItem.h ├── DeviceItem.m ├── DeviceLister.h ├── DeviceLister.m ├── English.lproj │ ├── InfoPlist.strings │ └── Pref360ControlPref.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib ├── Info.plist ├── MyAnalogStick.h ├── MyAnalogStick.m ├── MyCentreButtons.h ├── MyCentreButtons.m ├── MyDigitalStick.h ├── MyDigitalStick.m ├── MyMainButtons.h ├── MyMainButtons.m ├── MyShoulderButton.h ├── MyShoulderButton.m ├── Pref360Control.xcodeproj │ └── project.pbxproj ├── Pref360ControlPref.h ├── Pref360ControlPref.m ├── Pref360Control_Prefix.pch ├── batt0.tif ├── batt1.tif ├── batt2.tif ├── batt3.tif ├── battNone.tif ├── pref360controlpref.tiff └── version.plist ├── Readme.rtf ├── Wireless360Controller ├── English.lproj │ └── InfoPlist.strings ├── IOKitDriver.pbproj │ └── project.pbxproj ├── Info.plist ├── Wireless360Controller.cpp ├── Wireless360Controller.h ├── Wireless360Controller.xcodeproj │ └── project.pbxproj └── version.plist └── WirelessGamingReceiver ├── English.lproj └── InfoPlist.strings ├── IOKitDriver.pbproj └── project.pbxproj ├── Info.plist ├── WirelessDevice.cpp ├── WirelessDevice.h ├── WirelessGamingReceiver.cpp ├── WirelessGamingReceiver.h ├── WirelessGamingReceiver.xcodeproj ├── colin.mode1 └── project.pbxproj ├── WirelessHIDDevice.cpp ├── WirelessHIDDevice.h ├── devices.h └── version.plist /360Controller/360Controller.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/360Controller.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /360Controller/ChatPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/ChatPad.cpp -------------------------------------------------------------------------------- /360Controller/ChatPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/ChatPad.h -------------------------------------------------------------------------------- /360Controller/ControlStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/ControlStruct.h -------------------------------------------------------------------------------- /360Controller/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/Controller.cpp -------------------------------------------------------------------------------- /360Controller/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/Controller.h -------------------------------------------------------------------------------- /360Controller/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "360Controller"; 4 | NSHumanReadableCopyright = "© Colin Munro, 2005-11"; -------------------------------------------------------------------------------- /360Controller/Info copy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/Info copy.plist -------------------------------------------------------------------------------- /360Controller/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/Info.plist -------------------------------------------------------------------------------- /360Controller/_60Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/_60Controller.cpp -------------------------------------------------------------------------------- /360Controller/_60Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/_60Controller.h -------------------------------------------------------------------------------- /360Controller/chatpadhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/chatpadhid.h -------------------------------------------------------------------------------- /360Controller/chatpadkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/chatpadkeys.cpp -------------------------------------------------------------------------------- /360Controller/chatpadkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/chatpadkeys.h -------------------------------------------------------------------------------- /360Controller/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/version.plist -------------------------------------------------------------------------------- /360Controller/xbox360hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Controller/xbox360hid.h -------------------------------------------------------------------------------- /360Daemon/360Daemon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Daemon/360Daemon.1 -------------------------------------------------------------------------------- /360Daemon/360Daemon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Daemon/360Daemon.m -------------------------------------------------------------------------------- /360Daemon/360Daemon.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Daemon/360Daemon.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /360Daemon/360Daemon_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Daemon/360Daemon_Prefix.pch -------------------------------------------------------------------------------- /360Daemon/Alert.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Daemon/Alert.tif -------------------------------------------------------------------------------- /360Daemon/ControlPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Daemon/ControlPrefs.h -------------------------------------------------------------------------------- /360Daemon/ControlPrefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Daemon/ControlPrefs.m -------------------------------------------------------------------------------- /360Daemon/FoundationTool.pbproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Daemon/FoundationTool.pbproj/project.pbxproj -------------------------------------------------------------------------------- /360Daemon/com.mice.360Daemon.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/360Daemon/com.mice.360Daemon.plist -------------------------------------------------------------------------------- /DriverTool/DriverTool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/DriverTool/DriverTool.1 -------------------------------------------------------------------------------- /DriverTool/DriverTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/DriverTool/DriverTool.m -------------------------------------------------------------------------------- /DriverTool/DriverTool.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/DriverTool/DriverTool.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DriverTool/DriverTool_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/DriverTool/DriverTool_Prefix.pch -------------------------------------------------------------------------------- /Feedback360/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "Feedback360"; 4 | NSHumanReadableCopyright = "© Colin Munro, 2005-2011"; -------------------------------------------------------------------------------- /Feedback360/Feedback360.xcodeproj/colin.mode1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Feedback360/Feedback360.xcodeproj/colin.mode1 -------------------------------------------------------------------------------- /Feedback360/Feedback360.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Feedback360/Feedback360.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Feedback360/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Feedback360/Info.plist -------------------------------------------------------------------------------- /Feedback360/devlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Feedback360/devlink.c -------------------------------------------------------------------------------- /Feedback360/devlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Feedback360/devlink.h -------------------------------------------------------------------------------- /Feedback360/emulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Feedback360/emulator.c -------------------------------------------------------------------------------- /Feedback360/emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Feedback360/emulator.h -------------------------------------------------------------------------------- /Feedback360/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Feedback360/main.c -------------------------------------------------------------------------------- /Feedback360/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Feedback360/main.h -------------------------------------------------------------------------------- /Feedback360/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Feedback360/version.plist -------------------------------------------------------------------------------- /Install360Controller/Install360Controller.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Install360Controller/Install360Controller.pkgproj -------------------------------------------------------------------------------- /Install360Controller/Scripts/finish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Install360Controller/Scripts/finish.sh -------------------------------------------------------------------------------- /Install360Controller/Scripts/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Install360Controller/Scripts/upgrade.sh -------------------------------------------------------------------------------- /Install360Controller/Text/Welcome.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Install360Controller/Text/Welcome.rtf -------------------------------------------------------------------------------- /Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Licence.txt -------------------------------------------------------------------------------- /Pref360Control/DeviceItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/DeviceItem.h -------------------------------------------------------------------------------- /Pref360Control/DeviceItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/DeviceItem.m -------------------------------------------------------------------------------- /Pref360Control/DeviceLister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/DeviceLister.h -------------------------------------------------------------------------------- /Pref360Control/DeviceLister.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/DeviceLister.m -------------------------------------------------------------------------------- /Pref360Control/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Pref360Control/English.lproj/Pref360ControlPref.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/English.lproj/Pref360ControlPref.nib/designable.nib -------------------------------------------------------------------------------- /Pref360Control/English.lproj/Pref360ControlPref.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/English.lproj/Pref360ControlPref.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Pref360Control/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/Info.plist -------------------------------------------------------------------------------- /Pref360Control/MyAnalogStick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/MyAnalogStick.h -------------------------------------------------------------------------------- /Pref360Control/MyAnalogStick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/MyAnalogStick.m -------------------------------------------------------------------------------- /Pref360Control/MyCentreButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/MyCentreButtons.h -------------------------------------------------------------------------------- /Pref360Control/MyCentreButtons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/MyCentreButtons.m -------------------------------------------------------------------------------- /Pref360Control/MyDigitalStick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/MyDigitalStick.h -------------------------------------------------------------------------------- /Pref360Control/MyDigitalStick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/MyDigitalStick.m -------------------------------------------------------------------------------- /Pref360Control/MyMainButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/MyMainButtons.h -------------------------------------------------------------------------------- /Pref360Control/MyMainButtons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/MyMainButtons.m -------------------------------------------------------------------------------- /Pref360Control/MyShoulderButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/MyShoulderButton.h -------------------------------------------------------------------------------- /Pref360Control/MyShoulderButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/MyShoulderButton.m -------------------------------------------------------------------------------- /Pref360Control/Pref360Control.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/Pref360Control.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pref360Control/Pref360ControlPref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/Pref360ControlPref.h -------------------------------------------------------------------------------- /Pref360Control/Pref360ControlPref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/Pref360ControlPref.m -------------------------------------------------------------------------------- /Pref360Control/Pref360Control_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/Pref360Control_Prefix.pch -------------------------------------------------------------------------------- /Pref360Control/batt0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/batt0.tif -------------------------------------------------------------------------------- /Pref360Control/batt1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/batt1.tif -------------------------------------------------------------------------------- /Pref360Control/batt2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/batt2.tif -------------------------------------------------------------------------------- /Pref360Control/batt3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/batt3.tif -------------------------------------------------------------------------------- /Pref360Control/battNone.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/battNone.tif -------------------------------------------------------------------------------- /Pref360Control/pref360controlpref.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/pref360controlpref.tiff -------------------------------------------------------------------------------- /Pref360Control/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Pref360Control/version.plist -------------------------------------------------------------------------------- /Readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Readme.rtf -------------------------------------------------------------------------------- /Wireless360Controller/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Wireless360Controller/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Wireless360Controller/IOKitDriver.pbproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Wireless360Controller/IOKitDriver.pbproj/project.pbxproj -------------------------------------------------------------------------------- /Wireless360Controller/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Wireless360Controller/Info.plist -------------------------------------------------------------------------------- /Wireless360Controller/Wireless360Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Wireless360Controller/Wireless360Controller.cpp -------------------------------------------------------------------------------- /Wireless360Controller/Wireless360Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Wireless360Controller/Wireless360Controller.h -------------------------------------------------------------------------------- /Wireless360Controller/Wireless360Controller.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Wireless360Controller/Wireless360Controller.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Wireless360Controller/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/Wireless360Controller/version.plist -------------------------------------------------------------------------------- /WirelessGamingReceiver/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | NSHumanReadableCopyright = "© Colin Munro, 2007-11"; -------------------------------------------------------------------------------- /WirelessGamingReceiver/IOKitDriver.pbproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/IOKitDriver.pbproj/project.pbxproj -------------------------------------------------------------------------------- /WirelessGamingReceiver/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/Info.plist -------------------------------------------------------------------------------- /WirelessGamingReceiver/WirelessDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/WirelessDevice.cpp -------------------------------------------------------------------------------- /WirelessGamingReceiver/WirelessDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/WirelessDevice.h -------------------------------------------------------------------------------- /WirelessGamingReceiver/WirelessGamingReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/WirelessGamingReceiver.cpp -------------------------------------------------------------------------------- /WirelessGamingReceiver/WirelessGamingReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/WirelessGamingReceiver.h -------------------------------------------------------------------------------- /WirelessGamingReceiver/WirelessGamingReceiver.xcodeproj/colin.mode1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/WirelessGamingReceiver.xcodeproj/colin.mode1 -------------------------------------------------------------------------------- /WirelessGamingReceiver/WirelessGamingReceiver.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/WirelessGamingReceiver.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WirelessGamingReceiver/WirelessHIDDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/WirelessHIDDevice.cpp -------------------------------------------------------------------------------- /WirelessGamingReceiver/WirelessHIDDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/WirelessHIDDevice.h -------------------------------------------------------------------------------- /WirelessGamingReceiver/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/devices.h -------------------------------------------------------------------------------- /WirelessGamingReceiver/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electric-monk/360Controller/HEAD/WirelessGamingReceiver/version.plist --------------------------------------------------------------------------------