10 lines
223 B
C#
10 lines
223 B
C#
|
namespace BlueWater.Tycoons
|
||
|
{
|
||
|
public class TrashCan : InteractionFurniture
|
||
|
{
|
||
|
public override void Interaction()
|
||
|
{
|
||
|
GameManager.Instance.CurrentTycoonPlayer.DiscardFood();
|
||
|
}
|
||
|
}
|
||
|
}
|