diff options
author | sanine-a <sanine.not@pm.me> | 2023-05-09 16:02:43 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2023-05-09 16:02:43 -0500 |
commit | 68ef488e8f3bafa0ed68eb8326ac26fd63416891 (patch) | |
tree | 39773fcf0f42d3e05600ad437d90df884b3f6d63 /honey | |
parent | 9c9690ab5e4ecb484ee130c21f1767785908bd10 (diff) |
create more globals in honey.std
Diffstat (limited to 'honey')
-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 |