Files
panopainter/PanoPainter/GameViewController.h

22 lines
401 B
Objective-C

//
// GameViewController.h
// PanoPainter
//
// Created by Omar Mohamed Ali Mudhir on 07/05/17.
// Copyright © 2017 Omar Mohamed Ali Mudhir. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <GLKit/GLKit.h>
@interface GameViewController : GLKViewController <UIKeyInput>
{
@public GLKView* glview;
}
- (void)reset_touch;
- (void)async_lock;
- (void)async_unlock;
- (void)async_swap;
@end