14 lines
297 B
C#
14 lines
297 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class TrashCounter : BaseCounter
|
|
{
|
|
public override void Interact(Player player)
|
|
{
|
|
if (player.HasKitchenObject())
|
|
{
|
|
player.GetKitchenObject().DestroySelf();
|
|
}
|
|
}
|
|
}
|