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