コード例 #1
0
ファイル: Ship.cs プロジェクト: sercril/SpaceIsFun
        /// <summary>
        /// draw the ship object
        /// </summary>
        /// <param name="spriteBatch"></param>
        override public void Draw(SpriteBatch spriteBatch)
        {
            // draw the ship's sprite
            sprite.Draw(spriteBatch);

            // for each grid on the ship, draw its sprite


            // for each room on the ship, draw


            base.Draw(spriteBatch);
        }