Advertisement
Guest User

TITLE FOREVER!

a guest
Aug 1st, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.31 KB | None | 0 0
  1. class Scene_Title < Scene_Base
  2.   def command_new_game
  3.     Graphics.fadeout(60)
  4.     SceneManager.goto(Scene_Title)
  5.   end
  6.   def command_continue
  7.     Graphics.fadeout(60)
  8.     SceneManager.goto(Scene_Title)
  9.   end
  10.   def command_shutdown
  11.     Graphics.fadeout(60)
  12.     SceneManager.goto(Scene_Title)
  13.   end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement