コード例 #1
0
ファイル: Level.cs プロジェクト: ahc234/Graphics
        public void Draw(SpriteBatch spriteBatch, GameTime gameTime)
        {
            foreach (Platform p in platforms)
            {
                p.Draw(spriteBatch, gameTime);
            }

            bun.Draw(spriteBatch, gameTime);
        }