Esempio n. 1
0
        public MInputHand(int handIndex, IHandUI handUI, OperatePlatform platform)
        {
            HandIndex = handIndex;
            HandUI    = handUI;

            Platform = platform;
        }
Esempio n. 2
0
        /// <summary>
        /// 移除手
        /// </summary>
        /// <param name="handUI"></param>
        public static void RemoveUIHand(IHandUI handUI)
        {
            if (!HandUIs.Contains(handUI))
            {
                return;
            }

            HandUIs.Remove(handUI);
        }