Swiftgram/third-party/RMIntro/platform/ios/RMRootViewController.h
2017-02-11 17:05:23 +03:00

24 lines
418 B
Objective-C

//
// RMRootViewController.h
// IntroOpenGL
//
// Created by Ilya Rimchikov on 11/06/14.
// Copyright (c) 2014 Learn OpenGL ES. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "RMIntroViewController.h"
#import "RMLoginViewController.h"
@interface RMRootViewController : UIViewController
{
RMIntroViewController *_introVC;
RMLoginViewController *_loginVC;
}
- (void)startButtonPress;
@end