Esempio n. 1
0
File: Game.cs Progetto: robisoft/Uno
 private static void DrawPile_CardPopped(object sender, PlayerCardEventArgs e)
 {
     e.Player.DrawCard(e.Card);
 }
Esempio n. 2
0
File: Game.cs Progetto: robisoft/Uno
        private void player_CardPlayed(object sender, PlayerCardEventArgs e)
        {
            // TODO: Notify Players a card was played

            DiscardPile.Push(e.Player, e.Card);
        }
Esempio n. 3
0
File: Game.cs Progetto: robisoft/Uno
 private static void DiscardPile_CardPushed(object sender, PlayerCardEventArgs e)
 {
 }