示例#1
0
        public static string TheMoveToDoForMultiEating(CheckersLogic i_TheGameNow, string i_LastMove)
        {
            string activeToContinueEat = null;
            Locat  forChech            = new Locat((byte)(i_LastMove[3] - 'A'), (byte)(i_LastMove[4] - 'a'));
            Locat  yaad = new Locat();

            i_TheGameNow.CanToMultiEat(forChech, out yaad);
            activeToContinueEat = makeStringOfActive(forChech, yaad);


            return(activeToContinueEat);
        }