2020-08-01 16:57:12 +02:00
|
|
|
local Obj = {}
|
|
|
|
|
|
|
|
-- On charge toutes les différentes types d'acteurs
|
|
|
|
local cwd = (...):gsub('%.init$', '') .. "."
|
|
|
|
Obj.Player = require(cwd .. "player")
|
2021-03-20 17:23:14 +01:00
|
|
|
Obj.Gizmo = require(cwd .. "gizmo")
|
2020-08-01 16:57:12 +02:00
|
|
|
|
|
|
|
Obj.index = {}
|
|
|
|
Obj.index["player"] = Obj.Player
|
2021-03-20 17:23:14 +01:00
|
|
|
Obj.index["gizmo"] = Obj.Gizmo
|
2020-08-01 16:57:12 +02:00
|
|
|
|
|
|
|
Obj.collisions = {}
|
|
|
|
Obj.collisions["wall"] = require(cwd .. "wall")
|
2021-03-20 17:23:14 +01:00
|
|
|
Obj.collisions["gizmo-collision"] = Obj.Gizmo
|
2020-08-01 16:57:12 +02:00
|
|
|
|
|
|
|
return Obj
|