mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-29 04:06:39 +09:00
Change to require
This commit is contained in:
@@ -17,12 +17,12 @@ Pass a table with the names of the objects you want and it will be return in tha
|
||||
|
||||
local StdLib = {}
|
||||
|
||||
require('/table')
|
||||
require('/string')
|
||||
require('/time')
|
||||
StdLib.Color = require('/color')
|
||||
StdLib.Game = require('/game')
|
||||
StdLib.Event = require('/event')
|
||||
require('table')
|
||||
require('string')
|
||||
require('time')
|
||||
StdLib.Color = require('color')
|
||||
StdLib.Game = require('game')
|
||||
StdLib.Event = require('event')
|
||||
|
||||
return function(rtn)
|
||||
local _return = {}
|
||||
|
||||
Reference in New Issue
Block a user