Open Source Tomb Raider Engine
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
1234567891011121314151617181920 |
- /*!
- * \file include/commands/CommandEngine.h
- * \brief Engine Command interface
- *
- * \author xythobuz
- */
-
- #ifndef _COMMAND_ENGINE_H_
- #define _COMMAND_ENGINE_H_
-
- #include "commands/Command.h"
-
- DECLARE_SIMPLE_CMD(CommandLoad);
-
- DECLARE_SIMPLE_CMD(CommandScreenshot);
-
- DECLARE_SIMPLE_CMD_NO_HELP(CommandQuit);
-
- #endif
|