GLFunView.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
- //
- // GLFunView.h
- // GLFun
- //
- // Created by Jeff LaMarche on 7/31/08.
- // Copyright 2008 __MyCompanyName__. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "Constants.h"
- #import "Texture2D.h"
- #import "OpenGLES2DView.h"
- @interface GLFunView : OpenGLES2DView {
- CGPoint firstTouch;
- CGPoint lastTouch;
- UIColor *currentColor;
- BOOL useRandomColor;
-
- ShapeType shapeType;
-
- Texture2D *sprite;
- }
- @property CGPoint firstTouch;
- @property CGPoint lastTouch;
- @property (nonatomic, retain) UIColor *currentColor;
- @property BOOL useRandomColor;
- @property ShapeType shapeType;
- @property (nonatomic, retain) Texture2D *sprite;
- @end