mirror of
https://github.com/OMGeeky/hcsalmon1-Chess-Engine-Test.git
synced 2026-02-15 22:18:13 +01:00
21 lines
342 B
C#
21 lines
342 B
C#
using System;
|
|
|
|
namespace CEngineCopy
|
|
{
|
|
public class Program
|
|
{
|
|
|
|
|
|
static void Main()
|
|
{
|
|
Board.SetStartingPosition();
|
|
Debugging.PrintBoardGlobal();
|
|
Console.ReadLine();
|
|
Perft_Func.RunPerftFunctions(6);
|
|
//Perft_Debug.RunPerftFunctionsDebug(6);
|
|
}
|
|
|
|
|
|
}
|
|
}
|