2013-02-06 20:37:32 +00:00
|
|
|
|
//
|
|
|
|
|
// ViewController.h
|
|
|
|
|
// doublehitballs
|
|
|
|
|
//
|
|
|
|
|
// Created by vvv ооо on 13.07.12.
|
|
|
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
#import <GLKit/GLKit.h>
|
|
|
|
|
|
2013-07-15 18:44:22 +00:00
|
|
|
|
@interface ViewControllerTemplate : GLKViewController<UITextFieldDelegate>
|
|
|
|
|
{
|
|
|
|
|
}
|
2013-02-06 20:37:32 +00:00
|
|
|
|
|
2013-07-15 18:44:22 +00:00
|
|
|
|
@property (nonatomic, readonly) UITextField* hiddenTextField; //for keyboard
|
2013-02-06 20:37:32 +00:00
|
|
|
|
|
|
|
|
|
- (void) appInitCaller;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@end
|