Floors module

This commit is contained in:
2024-02-14 21:34:45 -05:00
parent c454a5cc4e
commit 0dfaaa4946
8 changed files with 175 additions and 64 deletions

View File

@@ -0,0 +1,18 @@
local Floors = {}
Floors.__index = Floors
local Storage = game:GetService("ReplicatedStorage")
local Tags = require(Storage:WaitForChild("Tags"))
function Floors.constructor(NumberOfFloors: number)
return setmetatable({NumberOfFloors = NumberOfFloors}, Floors)
end
--NumberOfFloors syntax: ElevatorDoor_(year)_Floor(floors amount)_1/2
function Floors:GetFloors(Year: string)
for i: number = 1, self.NumberOfFloors do
end
end
return Floors