Skip to content

Commit

Permalink
Update init.luau
Browse files Browse the repository at this point in the history
  • Loading branch information
nightcycle committed Jul 26, 2024
1 parent 9ef16b4 commit f799db1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Util/init.luau
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@ type ImageData = Types.ImageData
local Util = {}

Util.Container = {
ColdFusion = require(script:WaitForChild("Container")),
ColdFusion = require(script:WaitForChild("Container"):WaitForChild("ColdFusion")),
}
Util.List = {
ColdFusion = require(script:WaitForChild("List")),
ColdFusion = require(script:WaitForChild("List"):WaitForChild("ColdFusion")),
}
Util.Padding = {
ColdFusion = require(script:WaitForChild("Padding")),
ColdFusion = require(script:WaitForChild("Padding"):WaitForChild("ColdFusion")),
}
Util.TextLabel = {
ColdFusion = require(script:WaitForChild("TextLabel")),
ColdFusion = require(script:WaitForChild("TextLabel"):WaitForChild("ColdFusion")),
}
Util.ImageLabel = {
ColdFusion = require(script:WaitForChild("ImageLabel")),
ColdFusion = require(script:WaitForChild("ImageLabel"):WaitForChild("ColdFusion")),
}
Util.PopUp = {
ColdFusion = require(script:WaitForChild("PopUp")),
ColdFusion = require(script:WaitForChild("PopUp"):WaitForChild("ColdFusion")),
}
Util.ScrollingContainer = {
ColdFusion = require(script:WaitForChild("ScrollingContainer")),
ColdFusion = require(script:WaitForChild("ScrollingContainer"):WaitForChild("ColdFusion")),
}

return Util

0 comments on commit f799db1

Please sign in to comment.