Ejemplo n.º 1
0
        public CompositionGame(Game game)
            : base(game)
        {
            random = new Random();

            this.kanjiList = new KanjiList(game);
            game.Components.Add(this.kanjiList);

            this.compList = new CompositionList(game);
            game.Components.Add(this.compList);
        }
Ejemplo n.º 2
0
        public CompositionGame(Game game)
            : base(game)
        {
            random = new Random();

            this.kanjiList = new KanjiList(game);
            game.Components.Add(this.kanjiList);

            this.compList = new CompositionList(game);
            game.Components.Add(this.compList);
        }