aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 55367ee3..7e1e800f 100644
--- a/main.cpp
+++ b/main.cpp
@@ -5,6 +5,7 @@
#include "datatypes.h"
#include "networkmanager.h"
#include "lobby.h"
+#include "courtroom.h"
int main(int argc, char *argv[])
{
@@ -16,5 +17,10 @@ int main(int argc, char *argv[])
main_app.send_ms_packet(f_packet);
main_app.w_lobby->show();
+ //debug start
+ Courtroom w_courtroom;
+ w_courtroom.show();
+ //debug end
+
return main_app.exec();
}