We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9900b65 commit 8657f61Copy full SHA for 8657f61
Interface/Program.cs
@@ -9,7 +9,9 @@ static void Main( string[] args )
9
{
10
ChessEngine engine = new();
11
CommandProcessor generalProcessor = new GeneralCommandProcessor(engine);
12
- CommandProcessor? interfaceProcessor = null;
+
13
+ // set uci as the default command processor (it is also, for now, the only protocol we have)
14
+ CommandProcessor? interfaceProcessor = new UciCommandProcessor( engine );
15
#if DEBUG
16
Console.WriteLine("DEBUG MODE");
17
#endif
0 commit comments