Removed undo.lua

This commit is contained in:
David Capello 2007-09-27 20:44:48 +00:00
parent a43470b8f1
commit 76b09886da

View File

@ -1,18 +0,0 @@
-- ase -- allegro-sprite-editor: the ultimate sprites factory
-- Copyright (C) 2001-2005 by David A. Capello
function GUI_Undo()
if current_sprite and undo_can_undo(current_sprite.undo) then
undo_undo(current_sprite.undo)
sprite_generate_mask_boundaries(current_sprite)
GUI_Refresh(current_sprite)
end
end
function GUI_Redo()
if current_sprite and undo_can_redo(current_sprite.undo) then
undo_redo(current_sprite.undo)
sprite_generate_mask_boundaries(current_sprite)
GUI_Refresh(current_sprite)
end
end