| 1234567891011121314151617181920 |
- #pragma once
- #include <Console.h>
- class ExitCommand : public Framework::ConsoleCommand
- {
- public:
- ExitCommand();
- void addAutocompletePossibilities(
- const Framework::RCArray<Framework::Text>& args,
- bool appendToLast,
- Framework::RCArray<Framework::Text>& possibilities) const override;
- /**
- * executes the command
- *
- * \param args the arguments that the user has passed to the command
- * \return true if the command was executed successfully
- */
- bool execute(Framework::RCArray<Framework::Text>& args) const override;
- };
|