19 lines
463 B
C#
19 lines
463 B
C#
using BlueWater.Interfaces;
|
|
|
|
namespace BlueWater.Tycoons
|
|
{
|
|
public class BartenderTable : ServingTable
|
|
{
|
|
public override bool CanInteraction()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public void CompleteMakingCocktail(IPickup cocktailData)
|
|
{
|
|
CurrentPickupItem = cocktailData;
|
|
CocktailGlassImage.enabled = true;
|
|
InteractionCanvas.BalloonUi.SetItemImage(CurrentPickupItem);
|
|
}
|
|
}
|
|
} |