示例#1
0
        protected override void Draw(GameTime gameTime)
        {
            GraphicsDevice.Clear(Color.CornflowerBlue);

            spriteBatch.Begin(SpriteSortMode.BackToFront, null);
            ecsEngine.DrawSystems(spriteBatch);
            spriteBatch.End();

            base.Draw(gameTime);
        }