1*fce0c873SBarry Smith // 2*fce0c873SBarry Smith // iphoneViewController.h 3*fce0c873SBarry Smith // iphone 4*fce0c873SBarry Smith // 5*fce0c873SBarry Smith // Created by Barry Smith on 5/12/10. 6*fce0c873SBarry Smith // Copyright __MyCompanyName__ 2010. All rights reserved. 7*fce0c873SBarry Smith // 8*fce0c873SBarry Smith 9*fce0c873SBarry Smith #import <UIKit/UIKit.h> 10*fce0c873SBarry Smith #import <GLKit/GLKit.h> 11*fce0c873SBarry Smith #import <OpenGLES/EAGLDrawable.h> 12*fce0c873SBarry Smith 13*fce0c873SBarry Smith @interface iphoneViewController : UIViewController <UITextFieldDelegate>{ 14*fce0c873SBarry Smith IBOutlet UITextField *textField; 15*fce0c873SBarry Smith IBOutlet UITextView *textView; 16*fce0c873SBarry Smith IBOutlet GLKView *glkView; 17*fce0c873SBarry Smith 18*fce0c873SBarry Smith } 19*fce0c873SBarry Smith @property (retain, nonatomic) GLKView *glkView; 20*fce0c873SBarry Smith @property (nonatomic,retain) UITextField *textField; 21*fce0c873SBarry Smith @property (nonatomic,retain) UITextView *textView; 22*fce0c873SBarry Smith 23*fce0c873SBarry Smith @end 24