Sha256: 8cd28d62308415990898ed2365264aa750255d20aef12099309ffbb2f98b766f

Contents?: true

Size: 475 Bytes

Versions: 6

Compression:

Stored size: 475 Bytes

Contents

# frozen_string_literal: true

Gamefic::Standard.script do
  # Save, Restore, and Undo need to be handled by the game client. They have
  # default implementations here to make them available in help.

  meta :save do |actor|
    actor.tell "<kbd>Save</kbd> is not available."
  end

  meta :restore do |actor|
    actor.tell "<kbd>Restore</kbd> is not available."
  end

  meta :undo do |actor|
    actor.tell "<kbd>Undo</kbd> is not available."
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gamefic-standard-3.2.4 lib/gamefic-standard/actions/save-restore-undo.rb
gamefic-standard-3.2.3 lib/gamefic-standard/actions/save-restore-undo.rb
gamefic-standard-3.2.2 lib/gamefic-standard/actions/save-restore-undo.rb
gamefic-standard-3.2.1 lib/gamefic-standard/actions/save-restore-undo.rb
gamefic-standard-3.2.0 lib/gamefic-standard/actions/save-restore-undo.rb
gamefic-standard-3.1.0 lib/gamefic-standard/actions/save-restore-undo.rb