CannonGame.Level2.Draw C# (CSharp) 메소드

Draw() 공개 메소드

public Draw ( ) : void
리턴 void
        public override void Draw()
        {
            CannonGame.PreviousLevel = gameLevel;

            base.Draw();
            foreach (SolidObstacle o in Objects)
            {
                o.Draw(SpriteBatch);
            }
        }