DdsPlay.Model.Deck.Deck C# (CSharp) Method

Deck() public method

Initializes a new instance of the Deck class.
public Deck ( Game game ) : System
game Game The game.
return System
        public Deck(Game game)
        {
            this._game = game;
            this._game.Decks.Add(this);
        }

Same methods

Deck::Deck ( int numberOfDecks, int uptoNumber, Game game ) : System