Exemplo n.º 1
0
    public void OnConfirmTeamButton()
    {
        capSlot.GetDroppedItem();
        pilSlot.GetDroppedItem();
        mechSlot.GetDroppedItem();
        gunSlot.GetDroppedItem();

        try
        {
            CreateTeam();
        }
        catch (Exception ex)
        {
            Debug.Log(errorMessage + ": " + ex.ToString());
            throw;
        }
    }
Exemplo n.º 2
0
 public void OnMakePlayButton()
 {
     enemyCardSlot.GetDroppedItem();
     playerCardSlot.GetDroppedItem();
 }