mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-08 06:00:17 +00:00
12 lines
191 B
C
12 lines
191 B
C
|
#ifndef __Procedure_h
|
||
|
#define __Procedure_h
|
||
|
#include "SchemeObject.h"
|
||
|
|
||
|
@class Machine;
|
||
|
|
||
|
@interface Procedure: SchemeObject
|
||
|
- (void) invokeOnMachine: (Machine) m;
|
||
|
@end
|
||
|
|
||
|
#endif //__Procedure_h
|