mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
ad6e025a91
renovations. cmd_source handling is a little hacky in nq, but it's working.
10 lines
254 B
C
10 lines
254 B
C
#ifndef __cmd_h
|
|
#define __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//__cmd_h
|