Exemplo n.º 1
0
 internal static void OnUpdate2()
 {
     if (Update2 != null)
     {
         Update2.Invoke();
     }
 }
Exemplo n.º 2
0
        internal static void InvokeUpdate2(object player)
        {
            var args = new UpdatedEventArgs((Player)player);

            Update2?.Invoke(null, args);
        }