2019-07-16 10:53:02 +02:00
|
|
|
local Obj = {}
|
|
|
|
|
|
|
|
-- On charge toutes les différentes types d'acteurs
|
|
|
|
local cwd = (...):gsub('%.init$', '') .. "."
|
2019-07-20 16:55:06 +02:00
|
|
|
Obj.Player = require(cwd .. "player")
|
|
|
|
Obj.Box = require(cwd .. "box")
|
2019-07-16 10:53:02 +02:00
|
|
|
|
|
|
|
Obj.index = {}
|
|
|
|
Obj.index["player"] = Obj.Player
|
2019-07-20 16:55:06 +02:00
|
|
|
Obj.index["box"] = Obj.Box
|
2019-07-16 10:53:02 +02:00
|
|
|
|
|
|
|
Obj.collisions = {}
|
|
|
|
Obj.collisions["wall"] = require(cwd .. "wall")
|
|
|
|
|
|
|
|
return Obj
|