forked from rojo-rbx/rojo
13 lines
346 B
Lua
13 lines
346 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 = {7, 2, 1},
|
|
expectedServerVersionString = "7.2 or newer",
|
|
protocolVersion = 4,
|
|
defaultHost = "localhost",
|
|
defaultPort = 34872,
|
|
}) |