From 68ef488e8f3bafa0ed68eb8326ac26fd63416891 Mon Sep 17 00:00:00 2001 From: sanine-a Date: Tue, 9 May 2023 16:02:43 -0500 Subject: create more globals in honey.std --- honey/std.lua | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'honey/std.lua') 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 -- cgit v1.2.1