2013-02-06 20:37:32 +00:00
|
|
|
|
//
|
|
|
|
|
// CustomGLKView.h
|
|
|
|
|
// doublehitballs
|
|
|
|
|
//
|
|
|
|
|
// Created by vvv ооо on 15.07.12.
|
|
|
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <GLKit/GLKit.h>
|
|
|
|
|
|
|
|
|
|
@interface GLKViewTemplate : GLKView
|
|
|
|
|
{
|
|
|
|
|
|
2013-11-10 22:58:35 +00:00
|
|
|
|
//CGPoint touchBeganLocation[255];
|
|
|
|
|
|
|
|
|
|
//bool touchMoved[255];
|
2013-02-06 20:37:32 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
|
|
|
|
|
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
|
|
|
|
|
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
|
|
|
|
|
|
|
|
|
|
@end
|