diff options
author | sanine-a <sanine.not@pm.me> | 2023-03-28 16:35:22 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2023-03-28 16:35:22 -0500 |
commit | 45dbe47d17303050cbea7c2c51e838acfe21c2fb (patch) | |
tree | c2827c7aae6cf29286766209af942f16f91ee4c8 /honey.bak/std.lua | |
parent | d1c2a881f55b80603f6a7772a2c32394d23e795a (diff) |
add cached mesh loading
Diffstat (limited to 'honey.bak/std.lua')
-rw-r--r-- | honey.bak/std.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/honey.bak/std.lua b/honey.bak/std.lua new file mode 100644 index 0000000..a08bf35 --- /dev/null +++ b/honey.bak/std.lua @@ -0,0 +1,17 @@ +local init = require 'honey.init' + +honey.init = init.init +honey.loop = init.loop +honey.terminate = init.terminate + +honey.ecs = require 'honey.ecs' +honey.standardSystems = require 'honey.ecs-systems' +honey.mesh = require 'honey.mesh' +honey.Shader = require 'honey.shader' +honey.Window = require 'honey.window' + + +local glm = require 'honey.glm' +honey.Vec3 = glm.Vec3 +honey.Mat4 = glm.Mat4 +honey.Quaternion = glm.Quaternion |