GLFunView.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:

iPhone

开发平台:

MultiPlatform

  1. //
  2. //  GLFunView.h
  3. //  GLFun
  4. //
  5. //  Created by Jeff LaMarche on 7/31/08.
  6. //  Copyright 2008 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "Constants.h"
  10. #import "Texture2D.h"
  11. #import "OpenGLES2DView.h"
  12. @interface GLFunView : OpenGLES2DView {
  13. CGPoint firstTouch;
  14. CGPoint lastTouch;
  15. UIColor *currentColor;
  16. BOOL useRandomColor;
  17. ShapeType shapeType;
  18. Texture2D *sprite;
  19. }
  20. @property CGPoint firstTouch;
  21. @property CGPoint lastTouch;
  22. @property (nonatomic, retain) UIColor *currentColor;
  23. @property BOOL useRandomColor;
  24. @property ShapeType shapeType;
  25. @property (nonatomic, retain) Texture2D *sprite;
  26. @end