blob: c6d5143059bf18e671681f2d9b45db8482c498cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#import <UIKit/UIKit.h>
#import "BaseView.h"
@interface AppViewBase : BaseView
@property (nonatomic) NSInteger preferredFramesPerSecond;
- (void) initApp:(int)deviceType;
- (void) startAnimation;
- (void) stopAnimation;
- (void) terminate;
- (void) render;
- (NSString*)getError;
@end
|