22 lines
390 B
Objective-C
22 lines
390 B
Objective-C
//
|
||
// 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>
|
||
|
||
@interface ViewControllerTemplate : GLKViewController<UITextFieldDelegate>
|
||
{
|
||
}
|
||
|
||
@property (nonatomic, readonly) UITextField* hiddenTextField; //for keyboard
|
||
|
||
- (void) appInitCaller;
|
||
|
||
|
||
@end
|