summaryrefslogtreecommitdiffstats
path: root/NativeApp/Apple/Source/Classes/iOS/BaseView.mm
blob: c87e5cd1f64dbdf15680b8782a08b1cba45c6a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#import "BaseView.h"

@implementation BaseView

- (void) startAnimation
{
    _animating = TRUE;
}

- (void)stopAnimation
{
    _animating = FALSE;
}

- (void) terminate
{
    
}

@end