mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-14 15:51:15 +00:00
11 lines
194 B
Objective-C
11 lines
194 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
|