module Gamefic::Scriptable

def included_scripts

def included_scripts
  ancestors.that_are(Scriptable).uniq
end

def pick *args

Returns:
  • (Proxy::Pick) -

Parameters:
  • args (Array) --
def pick *args
  Proxy::Pick.new(*args)
end

def pick! *args

Other tags:
    Note: - The class method version of `pick!` returns a proxy, so the error
def pick! *args
  Proxy::PickEx.new(*args)
end