using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CDSAE3_Lian_Lian_Kan.Boards { internal interface IBoard { public int[,] make_board(); public int[,] remake_board(); public (bool, List<(int, int)>?) test((int, int) a, (int, int) b); public void decrease(params (int, int)[] poss); public List> get_tip((int, int) start); public (int, int) size { get; set; }//width,height public (int, int) GetRandomBlock(); } }