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