ExitState.h 169 bytes
#pragma once
#include <BasicAbstractions/IState.h>
struct ExitState final : IState {
    using IState::IState;
    bool do_step() noexcept override { return false; }
};