KeepItUp/Assets/_Scripts/PlayerScripts/PlayerEvents.cs
cuqmbr 9fba37c78a refactor: decouple UI and Score managers logic
Single Responsibility Principle?
2022-07-22 13:50:49 +03:00

16 lines
376 B
C#

using System;
public class PlayerEvents
{
public static event Action OnBallTouched;
public static event Action OnWallTouched;
public static event Action OnDeath;
public static void SendBallTouched() => OnBallTouched?.Invoke();
public static void SendWallTouched() => OnWallTouched?.Invoke();
public static void SendDeath() => OnDeath?.Invoke();
}