minivmac4ios/Mini vMac WatchKit Extension/InterfaceController.h

23 lines
528 B
C
Raw Permalink Normal View History

2024-03-25 19:27:26 +00:00
//
// InterfaceController.h
// Mini vMac WatchKit Extension
//
// Created by Jesús A. Álvarez on 14/10/2018.
// Copyright © 2018 namedfork. All rights reserved.
//
#import <WatchKit/WatchKit.h>
#import <Foundation/Foundation.h>
#import <SpriteKit/SpriteKit.h>
2024-03-27 19:25:15 +00:00
#import "EmulatorProtocol.h"
2024-03-25 19:27:26 +00:00
@class WCSession;
@interface InterfaceController : WKInterfaceController
2024-03-27 19:25:15 +00:00
@property (class, readonly, strong) id<Emulator> sharedEmulator NS_SWIFT_NAME(emulator);
2024-03-25 19:27:26 +00:00
- (void)sessionReachabilityDidChange:(WCSession *)session;
@end