Files
minecraft-pe-0.6.1/project/iosproj/minecraftpe/minecraftpeAppDelegate.h
2026-03-02 22:04:18 +03:00

30 lines
664 B
Objective-C
Executable File

//
// minecraftpeAppDelegate.h
// minecraftpe
//
// Created by rhino on 10/17/11.
// Copyright 2011 Mojang AB. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
@class minecraftpeViewController;
@interface minecraftpeAppDelegate : NSObject <UIApplicationDelegate, AVAudioSessionDelegate> {
AVAudioSession* audioSession;
NSString* audioSessionSoundCategory;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet minecraftpeViewController *viewController;
// AVAudioSessionDelegate
- (void)beginInterruption;
- (void)endInterruption;
+ (void) initialize;
@end