Add NegrBagrJaromirJagr minigame

This commit is contained in:
gravitrax-bublina
2026-04-26 14:35:54 +02:00
parent 5606c2474e
commit 3ac90ed7b6
62 changed files with 6102 additions and 454 deletions

View File

@@ -0,0 +1,18 @@
using UnityEngine;
public class CenterButtonTarget : MonoBehaviour
{
public TimingWheelShooter owner;
private void Awake()
{
if (owner == null)
owner = FindFirstObjectByType<TimingWheelShooter>();
}
public void NotifyHit(ProjectileBehaviour projectile)
{
if (owner != null)
owner.NotifyButtonHit(projectile);
}
}