diff options
author | sanine-a <sanine.not@pm.me> | 2023-03-27 14:47:30 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2023-03-27 14:47:30 -0500 |
commit | cd3d4706da048076375f5899b9f893e108fed7fa (patch) | |
tree | b30125513864abf0dd13e8e14049b8b0a17e283a /honey/std.lua | |
parent | 7b7cc22d463ff04337e90959482c3643cd685676 (diff) |
refactor: move glm classes into single filemain
Diffstat (limited to 'honey/std.lua')
-rw-r--r-- | honey/std.lua | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/honey/std.lua b/honey/std.lua index 80b071e..a08bf35 100644 --- a/honey/std.lua +++ b/honey/std.lua @@ -6,9 +6,12 @@ honey.terminate = init.terminate 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' -honey.Quaternion = require 'honey.quaternion' + + +local glm = require 'honey.glm' +honey.Vec3 = glm.Vec3 +honey.Mat4 = glm.Mat4 +honey.Quaternion = glm.Quaternion |