mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
23 lines
219 B
R
23 lines
219 B
R
|
#include "Void.h"
|
||
|
|
||
|
Void voidConstant;
|
||
|
|
||
|
@implementation Void
|
||
|
|
||
|
+ (void) initialize
|
||
|
{
|
||
|
voidConstant = [Void new];
|
||
|
}
|
||
|
|
||
|
+ (id) voidConstant
|
||
|
{
|
||
|
return voidConstant;
|
||
|
}
|
||
|
|
||
|
- (string) printForm
|
||
|
{
|
||
|
return "<void>";
|
||
|
}
|
||
|
|
||
|
@end
|