mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-24 20:51:35 +00:00
The functions haven't existed for two years now. And in the interest of "throw one away", the controls_o.r has been gutted.
16 lines
186 B
R
16 lines
186 B
R
#include <QF/keys.h>
|
|
#include "cvar.h"
|
|
|
|
#include "CvarToggle.h"
|
|
|
|
@implementation CvarToggle
|
|
-(void)toggle
|
|
{
|
|
Cvar_Toggle (name);
|
|
}
|
|
|
|
-(BOOL)value
|
|
{
|
|
return Cvar_GetInteger (name);
|
|
}
|
|
@end
|