mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
3a1e467ae8
Sadly, there are many bogus warnings and other errors. qfcc is still very sick :(.
15 lines
273 B
Objective-C
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
|