(svn r206) -Fix: [1001540] i lost all wagons. Half-assed fix for lost wagons. But now users can at least fix this problem. Consolecommand: "resetengines"

This commit is contained in:
darkvater
2004-09-11 19:18:30 +00:00
parent fe8c317d3c
commit d03afadad2
5 changed files with 28 additions and 0 deletions

13
console_cmds.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef CONSOLE_CMDS_H
#define CONSOLE_CMDS_H
/* Console_CMDS.h is the placeholder of all the console commands
* that will be added to the game. Register the command in
* * console.c IConsoleStdLibRegister;
* then put the command in the appropiate place (eg. where it belongs, stations
* stuff in station_cmd.c, etc.), and add the function decleration here.
*/
_iconsole_var * IConsoleResetEngines(byte argc, byte* argv[], byte argt[]);
#endif /* CONSOLE_CMDS_H */