forked from rojo-rbx/rojo
13 lines
360 B
Lua
13 lines
360 B
Lua
local strict = require(script.Parent.strict)
|
|
|
|
local isDevBuild = script.Parent.Parent:FindFirstChild("ROJO_DEV_BUILD") ~= nil
|
|
|
|
return strict("Config", {
|
|
isDevBuild = isDevBuild,
|
|
codename = "Epiphany",
|
|
version = {0, 6, 0, "-alpha.2"},
|
|
expectedServerVersionString = "0.6.0 or newer",
|
|
protocolVersion = 3,
|
|
defaultHost = "localhost",
|
|
defaultPort = 34872,
|
|
}) |