This repository has been archived on 2026-04-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
original-mcpe-0.6.1/handheld/project/iosproj/minecraftpe/minecraftpeAppDelegate.h
2026-04-01 23:13:15 +02:00

30 lines
664 B
Objective-C

//
// 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