コード例 #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);
        }
コード例 #2
0
ファイル: CompositionGame.cs プロジェクト: kira333/MyProjects
        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);
        }