mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 21:20:07 +00:00
13 lines
180 B
Objective-C
13 lines
180 B
Objective-C
#ifndef __CvarObject_h
|
|
#define __CvarObject_h
|
|
|
|
#include "Object.h"
|
|
|
|
@interface CvarObject : Object
|
|
{
|
|
string name;
|
|
}
|
|
-(id)initWithCvar:(string)cvname;
|
|
@end
|
|
|
|
#endif//__CvarObject_h
|