private void OnItemClickHandler(InventoryItemModel item, InventoryItemClickType actionType)
 {
     if (actionType == InventoryItemClickType.Select)
     {
         SetSelectedItemModel(item);
     }
     else
     {
         ItemClicked.SafeRaise(item, actionType);
     }
 }
Exemple #2
0
 protected void OnItemClicked(ItemActionType actionType, MarketItemModel model)
 {
     ItemClicked.SafeRaise(actionType, model);
 }
 protected void CallItemClicked(ItemActionType actionType, MarketItemModel itemModel)
 {
     ItemClicked.SafeRaise(actionType, itemModel);
 }