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