Pull in dependencies for standalone server.

This commit is contained in:
wan-may 2023-09-09 13:17:35 -03:00
parent a7c4d97aea
commit ab6502db61
5 changed files with 12 additions and 1 deletions

4
.gitignore vendored
View File

@ -1 +1,3 @@
logs/
logs/
build/
lib/lua

6
.gitmodules vendored
View File

@ -1,3 +1,9 @@
[submodule "lib/love-gltf"]
path = lib/love-gltf
url = https://gitlab.com/Alloyed/love-gltf.git
[submodule "lib/luasocket"]
path = lib/luasocket
url = https://github.com/lunarmodules/luasocket
[submodule "lib/lua54"]
path = lib/lua54
url = https://github.com/walterschell/Lua.git

1
lib/lua54 Submodule

@ -0,0 +1 @@
Subproject commit 88246d621abf7b6fba9332f49229d507f020e450

1
lib/luasocket Submodule

@ -0,0 +1 @@
Subproject commit 8c2ff7217e2a205eb107a6f48b04ff1b2b3090a1

View File

@ -1,3 +1,4 @@
package.path = package.path .. "."
local shared = assert( require 'shared' )
local socket = assert( require 'socket' )
local udp = socket.udp()