mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
24 lines
418 B
Objective-C
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
|