#==============================================================================
# ** Scene_Internet
#------------------------------------------------------------------------------
# This class performs the internet screen processing.
#==============================================================================
class Scene_Internet < Scene_MenuBase
#--------------------------------------------------------------------------
# * Start Processing
#--------------------------------------------------------------------------
def start
super
@status_window = Window_Status.new(@actor)
@status_window.set_handler

cancel, method

return_scene))
@status_window.set_handler

pagedown, method

next_actor))
@status_window.set_handler

pageup, method

prev_actor))
end
#--------------------------------------------------------------------------
# * Change Actors
#--------------------------------------------------------------------------
def on_actor_change
@status_window.actor = @actor
@status_window.activate
end
end