getCheckEat method

List<String> getCheckEat(
  1. int team
)

TODO 获取抽子招法 将军同时吃对方无根子 1.一个子将军,另一个子吃子,判断被吃子能否解将 2.躲将后是否有子被吃,被吃子能否解将

Implementation

List<String> getCheckEat(int team) {
  List<String> moves = [];

  // todo

  return moves;
}