10 lines
166 B
C#
10 lines
166 B
C#
using UnityEngine;
|
|
|
|
public class YummyMagnet : YummyBase
|
|
{
|
|
protected override void ObtainedCallback(Player player)
|
|
{
|
|
player.magnetCount += 1;
|
|
}
|
|
}
|