mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
16 lines
271 B
C
16 lines
271 B
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
|