internal static void OnUpdate2() { if (Update2 != null) { Update2.Invoke(); } }
internal static void InvokeUpdate2(object player) { var args = new UpdatedEventArgs((Player)player); Update2?.Invoke(null, args); }