# 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.
respond :save do |actor|
actor.tell "Save is not available."
end
respond :restore do |actor|
actor.tell "Restore is not available."
end
respond :undo do |actor|
actor.tell "Undo is not available."
end
end