diff options
Diffstat (limited to 'src/commands/quit.hpp')
-rw-r--r-- | src/commands/quit.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/commands/quit.hpp b/src/commands/quit.hpp new file mode 100644 index 0000000..cb1aefd --- /dev/null +++ b/src/commands/quit.hpp @@ -0,0 +1,9 @@ +#pragma once + +#include "interfaces/command.hpp" + +class QuitCommand : public ICommand +{ +public: + void execute() noexcept override; +}; |