├── .gitignore ├── LICENSE ├── README.md ├── example.lua └── gif.lua /.gitignore: -------------------------------------------------------------------------------- 1 | *.gif 2 | _not_ready_yet_* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egor-Skriptunoff/pure_lua_GIF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egor-Skriptunoff/pure_lua_GIF/HEAD/README.md -------------------------------------------------------------------------------- /example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egor-Skriptunoff/pure_lua_GIF/HEAD/example.lua -------------------------------------------------------------------------------- /gif.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egor-Skriptunoff/pure_lua_GIF/HEAD/gif.lua --------------------------------------------------------------------------------