diff options
Diffstat (limited to 'honey/std.lua')
-rw-r--r-- | honey/std.lua | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/honey/std.lua b/honey/std.lua index b0b6a15..d609844 100644 --- a/honey/std.lua +++ b/honey/std.lua @@ -4,6 +4,11 @@ honey.init = init.init honey.loop = init.loop honey.terminate = init.terminate +nvg = honey.nvg +ode = honey.ode +gl = honey.gl +glfw = honey.glfw + honey.ecs = require 'honey.ecs' honey.mesh = require 'honey.mesh' honey.shader = require 'honey.shader' @@ -18,6 +23,6 @@ end local glm = require 'honey.glm' -honey.Vec3 = glm.Vec3 -honey.Mat4 = glm.Mat4 -honey.Quaternion = glm.Quaternion +Vec3 = glm.Vec3 +Mat4 = glm.Mat4 +Quaternion = glm.Quaternion |