mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
438073e110
properly so far.
24 lines
301 B
R
24 lines
301 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 makeRootCell];
|
|
}
|
|
|
|
+ (id) nil
|
|
{
|
|
return one_nil_to_rule_them_all;
|
|
}
|
|
|
|
- (string) printForm
|
|
{
|
|
return "()";
|
|
}
|
|
|
|
@end
|