mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
15 lines
271 B
Objective-C
15 lines
271 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
|