Пример #1
0
        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;
        }