Exemplo n.º 1
0
 public void OnEquip(object sender, EventArgs args)
 {
     if (!(sender is InventoryItem))
     {
         return;
     }
     else
     {
         InventoryItem            item      = (InventoryItem)sender;
         EquipmentWindowComponent equipment = equipmentWindow.Component as EquipmentWindowComponent;
         equipment.EquipItem(item);
     }
 }
Exemplo n.º 2
0
        public void EquipItem(InventoryItem item)
        {
            EquipmentWindowComponent equipment = equipmentWindow.Component as EquipmentWindowComponent;

            equipment.EquipItem(item);
        }