mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
86606cc627
a few misc optimizations.
24 lines
295 B
R
24 lines
295 B
R
#include "Nil.h"
|
|
#include "defs.h"
|
|
|
|
Nil one_nil_to_rule_them_all;
|
|
|
|
@implementation Nil
|
|
|
|
+ (void) initialize
|
|
{
|
|
one_nil_to_rule_them_all = [Nil new];
|
|
[one_nil_to_rule_them_all retain];
|
|
}
|
|
|
|
+ (id) nil
|
|
{
|
|
return one_nil_to_rule_them_all;
|
|
}
|
|
|
|
- (string) printForm
|
|
{
|
|
return "()";
|
|
}
|
|
|
|
@end
|