mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
13 lines
169 B
Objective-C
13 lines
169 B
Objective-C
#ifndef __Void_h
|
|
#define __Void_h
|
|
#include "SchemeObject.h"
|
|
|
|
@interface Void: SchemeObject
|
|
{
|
|
}
|
|
+ (id) voidConstant;
|
|
@end
|
|
|
|
@extern Void *voidConstant;
|
|
|
|
#endif //__Void_h
|