1 2 3 4 5 6 7 8 9
#pragma once #include "interfaces/command.hpp" class QuitCommand : public ICommand { public: void execute() noexcept override; };