mirror of
https://github.com/unixtensor/Roblox-Elevator-Game.git
synced 2025-12-15 21:51:55 +00:00
Restructure and get a working state for the Haughton elevator
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
--!optimize 2
|
||||
--!native
|
||||
--!strict
|
||||
|
||||
local function MakeEvent<T,U>()
|
||||
|
||||
end
|
||||
|
||||
return {
|
||||
MakeEvent = MakeEvent
|
||||
}
|
||||
Reference in New Issue
Block a user