mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-22 15:39:52 +00:00
10 lines
273 B
Lua
10 lines
273 B
Lua
-- ase -- allegro-sprite-editor: the ultimate sprites factory
|
|
-- Copyright (C) 2001-2005 by David A. Capello
|
|
|
|
function GUI_LoadScriptFile()
|
|
local filename = ji_file_select(_("Load Script File(.lua)"), "", "lua")
|
|
if filename then
|
|
dofile(filename)
|
|
end
|
|
end
|