Restructure and get a working state for the Haughton elevator

This commit is contained in:
2024-08-13 01:45:03 -04:00
parent a1a455fb78
commit 9d081a2084
18 changed files with 96 additions and 440 deletions

View File

@@ -23,16 +23,19 @@ end
local function warnStudio<T...>(...: T...)
if RunService:IsStudio() then
warn(...)
warn(debug.traceback())
end
end
local function warnServer<T...>(...: T...)
if RunService:IsServer() then
warn(...)
warn(debug.traceback())
end
end
local function warnClient<T...>(...: T...)
if RunService:IsClient() then
warn(...)
warn(debug.traceback())
end
end

View File

@@ -1,11 +0,0 @@
--!optimize 2
--!native
--!strict
local function MakeEvent<T,U>()
end
return {
MakeEvent = MakeEvent
}