Class: T_BAG::Game_Over

Inherits:
Scene
  • Object
show all
Defined in:
lib/tbag/game_over.rb

Overview

Defines a special Game Over scene and its run behavior.

Instance Method Summary collapse

Methods inherited from Scene

#game_over, #load_game, #main_menu, #pause, #prompt, #save_game, #scene_change, #text

Constructor Details

#initializeGame_Over

Returns an instance of a special Game Over scene.



33
34
35
# File 'lib/tbag/game_over.rb', line 33

def initialize
  super(:endgame, 'Game Over')
end

Instance Method Details

#runVoid

Run with the same behavior as a scene.

Returns:

  • (Void)


39
40
41
# File 'lib/tbag/game_over.rb', line 39

def run
  super
end