示例#1
0
        public override void Initialize(Microsoft.Xna.Framework.Content.ContentManager d)
        {
            RaiseFlag(Jabber.Flags.FADE_IN);
            base.Initialize(Content);
            System.Threading.Thread thread = new System.Threading.Thread(new System.Threading.ThreadStart(ThreadedInitialize));
            thread.Start();

            feathers = new FallingFeathers();
            feathers.Initialize(Content);

            CacheSounds();
        }
示例#2
0
        public override void Initialize(Microsoft.Xna.Framework.Content.ContentManager d)
        {
            RaiseFlag(Jabber.Flags.FADE_IN);
            base.Initialize(Content);
            System.Threading.Thread thread = new System.Threading.Thread( new System.Threading.ThreadStart(ThreadedInitialize) );
            thread.Start();

            feathers = new FallingFeathers();
            feathers.Initialize(Content);

            CacheSounds();
        }