16 lines
366 B
Objective-C
16 lines
366 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// GLGameTemplate
|
|
//
|
|
// Created by Joshua Moerman on 5/4/12.
|
|
// Copyright (c) 2012 Vadovas. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class ViewController;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (strong, nonatomic) ViewController *viewController;
|
|
@end
|