# frozen_string_literal: true
module Gamefic
module Standard
module Actions
module SaveRestoreUndo
extend Gamefic::Scriptable
# 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 'Save is not available.'
end
meta :restore do |actor|
actor.tell 'Restore is not available.'
end
meta :undo do |actor|
actor.tell 'Undo is not available.'
end
end
end
end
end