Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //
- // TextureCutoutCircle.h
- //
- // Created by et1337 on 6/29/11.
- //
- #import <Foundation/Foundation.h>
- #import "TextureCutoutShape.h"
- const int CIRCLE_VERTEX_COUNT = 16;
- @interface TextureCutoutCircle : TextureCutoutShape
- {
- float radius;
- }
- @property float radius;
- -(id) initCircle:(float)radius withFile:(NSString*)file;
- -(id) initCircle:(float)radius withTexture:(CCTexture2D*)tex;
- @end
Advertisement
Add Comment
Please, Sign In to add comment