mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
13 lines
171 B
C
13 lines
171 B
C
|
#ifndef __Boolean_h
|
||
|
#define __Boolean_h
|
||
|
#include "SchemeObject.h"
|
||
|
|
||
|
@interface Boolean: SchemeObject
|
||
|
{
|
||
|
}
|
||
|
+ (id) trueConstant;
|
||
|
+ (id) falseConstant;
|
||
|
@end
|
||
|
|
||
|
#endif //__Void_h
|