class Gamefic::Scene::Base

def initialize(actor, narrative = nil, props = nil, **context)

Parameters:
  • props (Props::Default, nil) --
  • narrative (Narrative, nil) --
  • actor (Actor) --
def initialize(actor, narrative = nil, props = nil, **context)
  @actor = actor
  @narrative = narrative
  @props = props || self.class.props_class.new
  @context = context
end