mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-04 04:13:49 +01:00
18 lines
501 B
Objective-C
18 lines
501 B
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@import WatchConnectivity;
|
|
@class WatchBridge;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate, WCSessionDelegate>
|
|
|
|
@property (nonatomic, strong) UIWindow *window;
|
|
@property(nonatomic, strong) WatchBridge *watchBridge;
|
|
@property(nonatomic, strong) WCSession *session;
|
|
|
|
@end
|