summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 207d6d67b65666683d5394fb3021e675a5b309cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "lobby.h"

#include <iostream>

int main() {
	try {
		Lobby lobby;
		lobby.run();
	
	} catch(std::exception& e) {
		std::cerr << "Exception caught: " << e.what() << std::endl;
	}
}