ExitCommand.h 188 bytes
#pragma once
#include "ChangeStateCommand.h"
class ExitCommand: public ChangeStateCommand {
public:
    void execute() override;
public:
    ExitCommand(IStateManager& state_manager);