12 lines
205 B
C#
12 lines
205 B
C#
using UnityEngine;
|
|
|
|
public class Power_Pellet : Pellet
|
|
{
|
|
public float duration = 8.0f;
|
|
|
|
protected override void Eat()
|
|
{
|
|
FindObjectOfType<GameManager>().Power_PelletEaten(this);
|
|
}
|
|
}
|