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