ExitState.h 154 bytes
#pragma once
#include "../../Application/IState.h"
struct ExitState : IState {
    using IState::IState;
    bool do_step() override { return false; }
};