package mahjong.aux; import mahjong.aux.set.CardSet; import mahjong.tools.Deck; /** * Created by joe on 12/1/14. */ public class Environ { CardSet remCards; { remCards = new CardSet(0); remCards.add(Deck.generateDeck(true),1); } public Environ() { } }