#=================================================
#  Skip Title Screen v1.0
#     by Karin's Soulkeeper, Jan 16 2015
#
#  Skips the title screen and immediately
#  starts a new game
#
#  Ins: Just insert under 'Materials', above main
#
#  Credit: If you feel like it, why not?
#=================================================

class Scene_Title < Scene_Base
  def start
    DataManager.setup_new_game
    $game_map.autoplay
    SceneManager.goto(Scene_Map)
  end
  def terminate
    Graphics.fadeout(Graphics.frame_rate)
  end
end