class Gamefic::Active::Cue

The data that actors use to configure a Take.

Attributes

context[R]

@return [Hash]

scene[R]

@return [Symbol]

Public Class Methods

new(scene, **context) click to toggle source

@param scene [Symbol]

# File lib/gamefic/active/cue.rb, line 15
def initialize scene, **context
  @scene = scene
  @context = context
end

Public Instance Methods

to_s() click to toggle source
# File lib/gamefic/active/cue.rb, line 20
def to_s
  scene.to_s
end