mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
15 lines
162 B
R
15 lines
162 B
R
|
#include "Procedure.h"
|
||
|
|
||
|
@implementation Procedure
|
||
|
- (void) invokeOnMachine: (Machine) m
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
- (string) printForm
|
||
|
{
|
||
|
return "<procedure>";
|
||
|
}
|
||
|
|
||
|
@end
|