├── .gitattributes ├── .gitignore ├── README.md ├── VERSION.txt └── garrysmod └── lua └── menu ├── lf_simple_addon_manager.lua └── menu.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyForce-Gmod/Simple-Addon-Manager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyForce-Gmod/Simple-Addon-Manager/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyForce-Gmod/Simple-Addon-Manager/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.0.0 -------------------------------------------------------------------------------- /garrysmod/lua/menu/lf_simple_addon_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyForce-Gmod/Simple-Addon-Manager/HEAD/garrysmod/lua/menu/lf_simple_addon_manager.lua -------------------------------------------------------------------------------- /garrysmod/lua/menu/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyForce-Gmod/Simple-Addon-Manager/HEAD/garrysmod/lua/menu/menu.lua --------------------------------------------------------------------------------