├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── engine.cfg ├── lib ├── ReadWriteLock.gd ├── shared │ ├── client.gd │ ├── constants.gd │ └── server.gd ├── tcp │ ├── client.gd │ └── server.gd └── udp │ ├── client.gd │ └── server.gd └── preview ├── client_tab.gd ├── client_tab.xscn ├── index.xscn ├── preview.gd ├── res └── FiraMono-Medium.fnt ├── server_tab.gd └── server_tab.xscn /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/README.md -------------------------------------------------------------------------------- /engine.cfg: -------------------------------------------------------------------------------- 1 | [application] 2 | 3 | name="Multiplayer" 4 | main_scene="res://preview/index.xscn" 5 | -------------------------------------------------------------------------------- /lib/ReadWriteLock.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/lib/ReadWriteLock.gd -------------------------------------------------------------------------------- /lib/shared/client.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/lib/shared/client.gd -------------------------------------------------------------------------------- /lib/shared/constants.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/lib/shared/constants.gd -------------------------------------------------------------------------------- /lib/shared/server.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/lib/shared/server.gd -------------------------------------------------------------------------------- /lib/tcp/client.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/lib/tcp/client.gd -------------------------------------------------------------------------------- /lib/tcp/server.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/lib/tcp/server.gd -------------------------------------------------------------------------------- /lib/udp/client.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/lib/udp/client.gd -------------------------------------------------------------------------------- /lib/udp/server.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/lib/udp/server.gd -------------------------------------------------------------------------------- /preview/client_tab.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/preview/client_tab.gd -------------------------------------------------------------------------------- /preview/client_tab.xscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/preview/client_tab.xscn -------------------------------------------------------------------------------- /preview/index.xscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/preview/index.xscn -------------------------------------------------------------------------------- /preview/preview.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/preview/preview.gd -------------------------------------------------------------------------------- /preview/res/FiraMono-Medium.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/preview/res/FiraMono-Medium.fnt -------------------------------------------------------------------------------- /preview/server_tab.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/preview/server_tab.gd -------------------------------------------------------------------------------- /preview/server_tab.xscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOBUGE-Incubator/gdscript-networking-library/HEAD/preview/server_tab.xscn --------------------------------------------------------------------------------