mirror of
https://github.com/dolphin-emu/WiimotePair.git
synced 2026-01-31 01:15:18 +01:00
14 lines
401 B
Objective-C
14 lines
401 B
Objective-C
// Copyright 2024 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <CoreBluetooth/CoreBluetooth.h>
|
|
#import <IOBluetooth/IOBluetooth.h>
|
|
|
|
@interface ViewController : NSViewController <CBCentralManagerDelegate, IOBluetoothDeviceInquiryDelegate, IOBluetoothDevicePairDelegate>
|
|
|
|
@property (weak) IBOutlet NSProgressIndicator* progressIndicator;
|
|
|
|
@end
|
|
|