Exemplo n.º 1
0
        public void OnPlayerLive(object _source, LiveEventArgs e)
        {
            Player p;

            // Logger.Log.WriteLine("live {0}", e);
            if (players.TryGetValue(e.PlayerId, out p))
            {
                p.live();
            }
        }
Exemplo n.º 2
0
 protected virtual void OnLiveEvent(LiveEventArgs args)
 {
     LiveEventReached?.Invoke(this, args);
 }