mirror of
https://github.com/centau/vide.git
synced 2026-08-20 23:01:37 +00:00
Refactor codebase
This commit is contained in:
parent
07ae542e28
commit
a3f03fd067
15 changed files with 228 additions and 128 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue