lib/gamefic/scene/yes_or_no.rb
# frozen_string_literal: true module Gamefic module Scene # A specialized MultipleChoice scene that only accepts Yes or No. # class YesOrNo < MultipleChoice use_props_class Props::YesOrNo def initialize(...) super props.options end def self.type 'YesOrNo' end end end end