├── .gitignore ├── LICENSE ├── README.md └── addons └── humble ├── _src └── _singleton │ ├── remote_event.gd │ └── remote_server.gd ├── icon.png ├── plugin.cfg └── plugin_init.gd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QJPG/Humble-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QJPG/Humble-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QJPG/Humble-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /addons/humble/_src/_singleton/remote_event.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QJPG/Humble-Plugin/HEAD/addons/humble/_src/_singleton/remote_event.gd -------------------------------------------------------------------------------- /addons/humble/_src/_singleton/remote_server.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QJPG/Humble-Plugin/HEAD/addons/humble/_src/_singleton/remote_server.gd -------------------------------------------------------------------------------- /addons/humble/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QJPG/Humble-Plugin/HEAD/addons/humble/icon.png -------------------------------------------------------------------------------- /addons/humble/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QJPG/Humble-Plugin/HEAD/addons/humble/plugin.cfg -------------------------------------------------------------------------------- /addons/humble/plugin_init.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QJPG/Humble-Plugin/HEAD/addons/humble/plugin_init.gd --------------------------------------------------------------------------------