diff options
author | sanine-a <sanine.not@pm.me> | 2023-03-22 12:12:31 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2023-03-22 12:12:31 -0500 |
commit | 16bcc6daab84373cac0f4125c1580d3cb1261baf (patch) | |
tree | 7a6156e204579264ce867c4771c35265f680e84b /honey/std.lua | |
parent | a45f73c7388b3f5a5901bfcc66fd2d1df58d3001 (diff) |
move ecs systems into separate module
Diffstat (limited to 'honey/std.lua')
-rw-r--r-- | honey/std.lua | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/honey/std.lua b/honey/std.lua index 752df4d..028a2a8 100644 --- a/honey/std.lua +++ b/honey/std.lua @@ -3,9 +3,10 @@ local init = require 'honey.init' honey.init = init.init honey.terminate = init.terminate -honey.ecs = require 'honey.ecs' -honey.Mat4 = require 'honey.mat4' -honey.mesh = require 'honey.mesh' -honey.Shader = require 'honey.shader' -honey.Vec3 = require 'honey.vec3' -honey.Window = require 'honey.window' +honey.ecs = require 'honey.ecs' +honey.standardSystems = require 'honey.ecs-systems' +honey.Mat4 = require 'honey.mat4' +honey.mesh = require 'honey.mesh' +honey.Shader = require 'honey.shader' +honey.Vec3 = require 'honey.vec3' +honey.Window = require 'honey.window' |