protected override void Update(GameTime gameTime) { AutoPong.Update(); base.Update(gameTime); }
protected override void Draw(GameTime gameTime) { GraphicsDevice.Clear(new Color(40, 40, 40)); AutoPong.Draw(); base.Draw(gameTime); }
protected override void LoadContent() { Data.SB = new SpriteBatch(GraphicsDevice); AutoPong.Reset(); }