Files
Basalt/Basalt/module.lua
Robert Jelic c0fab23cef Small update to 1.6.4
- added bimg support
- reworked graphic object
- added blit for drawsystem (makes drawing bit faster
- added bimg lib
- reworked image object
- fixed thread bug
2022-11-23 17:32:06 +01:00

4 lines
111 B
Lua

return function(path)
local exists, content = pcall(require, path)
return exists and content or nil
end