コード例 #1
0
ファイル: Screen.cs プロジェクト: ARLM-Attic/neat
        public virtual void Initialize()
        {
            Form = new Form(game);
            if (EffectChain == null)
            {
                EffectChain = new EffectChain(game);
            }
            foreach (var item in Components)
            {
                item.Initialize();
            }

            EffectHandler.Game = game;
        }