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.
12345678910111213141516171819202122 |
- /*!
- * \file include/commands/CommandMove.h
- * \brief Move Command interface
- *
- * \author xythobuz
- */
-
- #ifndef _COMMAND_MOVE_H_
- #define _COMMAND_MOVE_H_
-
- #include "commands/Command.h"
-
- class CommandMove : public Command {
- public:
- virtual std::string name();
- virtual std::string brief();
- virtual void printHelp();
- virtual int execute(std::istream& args);
- };
-
- #endif
|