diff --git a/C#/Cleaner and slower version/main.cs b/C#/Cleaner and slower version/main.cs new file mode 100644 index 0000000..1331122 --- /dev/null +++ b/C#/Cleaner and slower version/main.cs @@ -0,0 +1,20 @@ +using System; + +namespace CEngineCopy +{ + public class Program + { + + + static void Main() + { + Board.SetStartingPosition(); + Debugging.PrintBoardGlobal(); + Console.ReadLine(); + Perft_Func.RunPerftFunctions(6); + //Perft_Debug.RunPerftFunctionsDebug(6); + } + + + } +}