protected override void Update(GameTime gameTime) { Designer.Update(gameTime); base.Update(gameTime); }
public GameTransition(GameMain game, Designer target) : base(game) { this.game = game; this.target = target; }
protected override void UnloadContent() { Designer.UnloadContent(); base.UnloadContent(); }