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