mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
a12fa85506
stringh: I'm not really that keen on those interfaces and I'ld like to see them go away) and create libcsqc for most of it (key goes into gui)
10 lines
278 B
C
10 lines
278 B
C
#ifndef __ruamoko_cmd_h
|
|
#define __ruamoko_cmd_h
|
|
|
|
@extern void (string name, void () func) Cmd_AddCommand;
|
|
@extern integer () Cmd_Argc;
|
|
@extern string (integer arg) Cmd_Argv;
|
|
@extern string (integer arg) Cmd_Args;
|
|
@extern void (string value) Cmd_Return;
|
|
|
|
#endif//__ruamoko_cmd_h
|