mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
20 lines
385 B
Objective-C
20 lines
385 B
Objective-C
//
|
|
// RMAppDelegate.h
|
|
// IntroOpenGL
|
|
//
|
|
// Created by Ilya Rimchikov on 19/01/14.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RMIntroViewController.h"
|
|
#import "RMRootViewController.h"
|
|
|
|
@interface RMAppDelegate : UIResponder <UIApplicationDelegate>
|
|
{
|
|
RMRootViewController *_rootVC;
|
|
}
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
//@property (nonatomic) RMTestView *iconView;
|
|
@end
|