diff options
author | sanine <sanine.not@pm.me> | 2023-03-16 12:12:39 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-03-16 12:12:39 -0500 |
commit | d94d9fb122e42264eca20bb037fe8a82290bd3e2 (patch) | |
tree | 7cb5b0ffd657ba69e193b4f2af6f1ddd3ec75ed2 /honey/std.lua | |
parent | 7516044247663dabccc7db110703cfcf8545d95f (diff) |
implement ecs node cascading
Diffstat (limited to 'honey/std.lua')
-rw-r--r-- | honey/std.lua | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/honey/std.lua b/honey/std.lua index ba86eb0..752df4d 100644 --- a/honey/std.lua +++ b/honey/std.lua @@ -1,16 +1,11 @@ local init = require 'honey.init' -local window = require 'honey.window' -local mesh = require 'honey.mesh' -local Vec3 = require 'honey.vec3' -local Mat4 = require 'honey.mat4' -local Shader = require 'honey.shader' honey.init = init.init honey.terminate = init.terminate -honey.Window = window.Window -honey.mesh = mesh -honey.Vec3 = Vec3 -honey.Mat4 = Mat4 - -honey.Shader = Shader +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' |