Refactor codebase

This commit is contained in:
Aaron Smith 2023-08-22 15:50:03 +01:00
parent 07ae542e28
commit a3f03fd067
15 changed files with 228 additions and 128 deletions

View file

@ -1,11 +1,5 @@
local Enum = Enum
local Color3 = Color3
if not game then
local mock = require "test/mock"
Enum = mock.Enum
Color3 = mock.Color3
end
local Enum = game and Enum or require "test/mock".Enum :: never
local Color3 = game and Color3 or require "test/mock".Color3 :: never
return {
Part = {