From 4d71ec3c1eff551bcffa144dfb56f85e863e14b1 Mon Sep 17 00:00:00 2001 From: peauxh9ov <1757486528@qq.com> Date: Mon, 17 Jun 2024 23:59:59 +0800 Subject: [PATCH] ADD file via upload --- AI.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 AI.h diff --git a/AI.h b/AI.h new file mode 100644 index 0000000..b483212 --- /dev/null +++ b/AI.h @@ -0,0 +1,17 @@ +#pragma once +#include "Chess.h" +class AI +{ +private: + Chess* chess; + vector> scoreMap; + + void calculateScore(); + ChessPos think(); +public: + void init(Chess *chess); + void go(); + + +}; +