aboutsummaryrefslogtreecommitdiff
path: root/frontend/cmd/quit.cpp
blob: 7bc1b72d10ca86ebb1336efc6d302408bbf273b9 (plain)
1
2
3
4
5
6
7
8
9
#include "../GameController.h"

using namespace std;

void GameController::cmd_quit(string &) {
	this->playing = false;
	this->quit = true;
}