From 6d3492dbf9e4a4a66450675c71ed87803a78f841 Mon Sep 17 00:00:00 2001 From: AdmiralEmser Date: Sun, 9 Oct 2022 17:16:58 +0200 Subject: [PATCH] fixing minor issues in FC-Chess.cpp (stuff I commented out for testing) --- FC-Chess/FC-Chess.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/FC-Chess/FC-Chess.cpp b/FC-Chess/FC-Chess.cpp index b803252..6c8988d 100644 --- a/FC-Chess/FC-Chess.cpp +++ b/FC-Chess/FC-Chess.cpp @@ -11,14 +11,13 @@ FCC::Chess::Chess() void FCC::Chess::mainLoop() { // initialize user interface - - // tui.startup(); + tui.startup(); // main loop while(!gameEnded) { /*MISSING: user input*/ - // tui.mainLoop(); + tui.mainLoop(); } }