You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

AI.cpp 449 B

123456789101112131415
  1. #include <vector>
  2. #include <thread>
  3. #include "AI.h"
  4. // 选手必须定义该变量来选择自己的阵营
  5. const THUAI6::PlayerType playerType = THUAI6::PlayerType::HumanPlayer;
  6. // 选手只需要定义两者中自己选中的那个即可,定义两个也不会有影响。
  7. const THUAI6::ButcherType butcherType = THUAI6::ButcherType::ButcherType1;
  8. const THUAI6::HumanType humanType = THUAI6::HumanType::HumanType1;
  9. void AI::play(IAPI& api)
  10. {
  11. }