class Gamefic::Scene::ActiveChoice

def self.without_selection(action)

Parameters:
  • action (Symbol) --
def self.without_selection(action)
  WITHOUT_SELECTION_ACTIONS.include?(action) ||
    raise(ArgumentError, "without_selection_action must be one of #{WITHOUT_SELECTION_ACTIONS.map(&:inspect).join_or}")
  @without_selection_action = action
end