├── .gitignore ├── LICENSES └── GPL-2.0-or-later.txt ├── README.md ├── WiimotePair.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── IDETemplateMacros.plist └── WiimotePair ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── Contents.json │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png └── Contents.json ├── Base.lproj └── Main.storyboard ├── Credits.rtf ├── IOBluetoothCoreBluetoothCoordinator+Private.h ├── IOBluetoothDevice+Private.h ├── IOBluetoothDevicePair+Private.h ├── ViewController.h ├── ViewController.m ├── WiimotePair.entitlements └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/README.md -------------------------------------------------------------------------------- /WiimotePair.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WiimotePair.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WiimotePair.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WiimotePair.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /WiimotePair/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/AppDelegate.h -------------------------------------------------------------------------------- /WiimotePair/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/AppDelegate.m -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /WiimotePair/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WiimotePair/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WiimotePair/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/Credits.rtf -------------------------------------------------------------------------------- /WiimotePair/IOBluetoothCoreBluetoothCoordinator+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/IOBluetoothCoreBluetoothCoordinator+Private.h -------------------------------------------------------------------------------- /WiimotePair/IOBluetoothDevice+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/IOBluetoothDevice+Private.h -------------------------------------------------------------------------------- /WiimotePair/IOBluetoothDevicePair+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/IOBluetoothDevicePair+Private.h -------------------------------------------------------------------------------- /WiimotePair/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/ViewController.h -------------------------------------------------------------------------------- /WiimotePair/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/ViewController.m -------------------------------------------------------------------------------- /WiimotePair/WiimotePair.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/WiimotePair.entitlements -------------------------------------------------------------------------------- /WiimotePair/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-emu/WiimotePair/HEAD/WiimotePair/main.m --------------------------------------------------------------------------------