mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 20:55:50 +00:00
13 lines
356 B
Lua
13 lines
356 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, "-dev"},
|
|
expectedServerVersionString = "0.6.0 or newer",
|
|
protocolVersion = 3,
|
|
defaultHost = "localhost",
|
|
defaultPort = 34872,
|
|
}) |