Exemple #1
0
 public void CmdBeginHand(int hand, byte[] arrHand)
 {
     try
     {
         if (hand == 0)
         {
             leftHand.BeginHand(arrHand);
         }
         else
         {
             rightHand.BeginHand(arrHand);
         }
     }
     catch (System.Exception e)
     {
         Debug.LogException(e);
     }
 }