24 lines
564 B
Objective-C
24 lines
564 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// PanoPainter
|
|
//
|
|
// Created by Omar Mohamed Ali Mudhir on 07/05/17.
|
|
// Copyright © 2017 Omar Mohamed Ali Mudhir. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
- (BOOL)application:(UIApplication *)app
|
|
openURL:(NSURL *)url
|
|
options:(NSDictionary<UIApplicationOpenURLOptionsKey, id> *)options;
|
|
- (float)sonarpen_pressure;
|
|
- (bool)sonarpen_present;
|
|
- (void)hockeyapp_crash;
|
|
- (void)sonarpen_start;
|
|
@end
|
|
|