summaryrefslogtreecommitdiff
path: root/honey/std.lua
diff options
context:
space:
mode:
Diffstat (limited to 'honey/std.lua')
-rw-r--r--honey/std.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/honey/std.lua b/honey/std.lua
index 923c66a..78b2525 100644
--- a/honey/std.lua
+++ b/honey/std.lua
@@ -1,3 +1,13 @@
+local init = require 'honey.init'
local window = require 'honey.window'
+local mesh = require 'honey.mesh'
+local Vec3 = require 'honey.vec3'
+local Mat4 = require 'honey.mat4'
+
+honey.init = init.init
+honey.terminate = init.terminate
honey.Window = window.Window
+honey.mesh = mesh
+honey.Vec3 = Vec3
+honey.Mat4 = Mat4