15 lines
333 B
C#
15 lines
333 B
C#
namespace BlueWater.Tycoons
|
|
{
|
|
public class TrashCan : InteractionFurniture
|
|
{
|
|
public override void Interaction()
|
|
{
|
|
CurrentTycoonPlayer.DiscardItem();
|
|
}
|
|
|
|
public override bool CanInteraction()
|
|
{
|
|
return CurrentTycoonPlayer.IsCarriedItem();
|
|
}
|
|
}
|
|
} |