quakeforge/ruamoko/cl_menu/CrosshairView.h
Bill Currie 3a1e467ae8 Non-bogus syntax and warning fixes for ruamoko/cl_menu.
Sadly, there are many bogus warnings and other errors. qfcc is still very
sick :(.
2011-02-14 23:10:46 +09:00

15 lines
273 B
Objective-C

#ifndef __CrosshairView_h
#define __CrosshairView_h
#include "gui/View.h"
#include "CrosshairCvar.h"
@interface CrosshairView : View
{
CrosshairCvar *crosshair;
}
-(id)initWithBounds:(Rect)aRect :(CrosshairCvar*)_crosshair;
-(void) next;
@end
#endif//__CrosshairView_h