1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 17:38:07 +01:00
Telegram/thirdparty/RMIntro/platform/ios/RMIntroViewController.h
2014-07-10 18:11:09 +04:00

58 lines
901 B
Objective-C

//
// RMIntroViewController.h
// IntroOpenGL
//
// Created by Ilya Rimchikov on 19/01/14.
//
//
#import <UIKit/UIKit.h>
#import <GLKit/GLKit.h>
//#import "RMRootViewController.h"
@interface RMIntroViewController : UIViewController<UIScrollViewDelegate, GLKViewDelegate>
{
EAGLContext *context;
GLKView *_glkView;
UIImageView *_startArrow;
NSArray *_headlines;
NSArray *_descriptions;
NSMutableArray *_pageViews;
UIView *_separatorView;
//RMTestView *_iconView;
UIScrollView *_pageScrollView;
NSInteger _currentPage;
UIButton *_startButton;
UIPageControl *_pageControl;
NSTimer *_updateAndRenderTimer;
BOOL _isOpenGLLoaded;
}
@property (nonatomic) UIViewController *rootVC;
@property (nonatomic, assign) NSInteger draw_q;
- (void)startTimer;
- (void)stopTimer;
@end