2024-07-02 18:27:56 +00:00
|
|
|
namespace BlueWater.Tycoons
|
|
|
|
{
|
|
|
|
public class TrashCan : InteractionFurniture
|
|
|
|
{
|
|
|
|
public override void Interaction()
|
|
|
|
{
|
2024-10-10 09:32:18 +00:00
|
|
|
EventManager.InvokeCocktailDiscarded();
|
2024-07-08 20:06:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override bool CanInteraction()
|
|
|
|
{
|
2024-09-23 02:00:21 +00:00
|
|
|
return CurrentTycoonPlayer.TycoonPickupHandler.IsPickedUpCocktail();
|
2024-07-02 18:27:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|