Change to require

This commit is contained in:
Cooldude2606
2018-05-20 18:58:56 +01:00
parent d7c42e4c8c
commit 7ccf1083d2
3 changed files with 20 additions and 13 deletions

View File

@@ -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 = {}