blob: ab0c2a0adbb7cf3eb00cc063f4529f0f62948767 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#import <UIKit/UIKit.h>
#import "MuLibraryController.h"
enum
{
// use at most 128M for resource cache
ResourceCacheMaxSize = 128<<20 // use at most 128M for resource cache
};
@interface MuAppDelegate : NSObject <UIApplicationDelegate, UINavigationControllerDelegate>
@end
|