Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
#include "../../include/States/States.h"
bool GameState::do_step() {
std::cout << "Game state" << std::endl;
m_state_manager.set_next_state(std::make_unique<ExitState>(m_state_manager));
return true;
}