KeepItUp/Assets/_Scripts/PlayerScripts/PlayerEvents.cs
2022-07-20 20:06:57 +03:00

12 lines
277 B
C#

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