Files

13 lines
254 B
C#
Raw Permalink Normal View History

2026-08-06 14:43:17 -04:00
using UnityEngine;
public class YummyLaser : YummyBase
{
protected override void ObtainedCallback(Player player)
{
2026-08-27 21:51:28 -04:00
int awarded = Random.Range(1, 15);
player.laserCount += awarded;
ShowNotification($"{awarded}");
2026-08-06 14:43:17 -04:00
}
}