mirror of
https://github.com/unixtensor/Roblox-Elevator-Game.git
synced 2026-02-03 16:36:49 +00:00
18 lines
237 B
Lua
18 lines
237 B
Lua
--!optimize 2
|
|
--!native
|
|
--!strict
|
|
|
|
local Enums = {}
|
|
|
|
Enums.Buttons = {
|
|
Car = "CarButton",
|
|
Landing = "LandingButton",
|
|
Special = "SpecialButton",
|
|
Relay = "RelayButton"
|
|
}
|
|
|
|
Enums.Elevators = {
|
|
Otis1960 = "Otis1960"
|
|
}
|
|
|
|
return Enums |