mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
30bd1c0134
Hitting enter after inputting text is currently broken, but that's because support for it was never put in the inputline wrapper code.
11 lines
182 B
Objective-C
11 lines
182 B
Objective-C
#ifndef __CvarString_h
|
|
#define __CvarString_h
|
|
|
|
#include "CvarObject.h"
|
|
|
|
@interface CvarString : CvarObject
|
|
-(void)setString:(string)str;
|
|
-(string)value;
|
|
@end
|
|
|
|
#endif//__CvarString_h
|