16 lines
391 B
C#
16 lines
391 B
C#
namespace BlueWater.Tycoons
|
|
{
|
|
public class TrashCan : InteractionFurniture
|
|
{
|
|
public override void Interaction()
|
|
{
|
|
TycoonEvents.OnCocktailDiscarded?.Invoke();
|
|
//CurrentTycoonPlayer.DiscardItem();
|
|
}
|
|
|
|
public override bool CanInteraction()
|
|
{
|
|
return CurrentTycoonPlayer.IsCarriedItem();
|
|
}
|
|
}
|
|
} |