class Gamefic::Props::Default
A collection of data related to a scene. Scenes define which Props
class they use. Props
can be accessed in a scene’s on_start and on_finish callbacks.
Props::Default
includes the most common attributes that a scene requires. Scenes are able but not required to subclass it. Some scenes, like MultipleChoice
, use specialized Props
subclasses, but in many cases, Props::Default
is sufficient.
Attributes
@return [String]
@return [String]
Public Instance Methods
Source
# File lib/gamefic/props/default.rb, line 30 def enter(text) @input = text end
@param text [String]
Source
# File lib/gamefic/props/default.rb, line 25 def output @output ||= Props::Output.new end