summaryrefslogtreecommitdiff
path: root/honey/std.lua
diff options
context:
space:
mode:
Diffstat (limited to 'honey/std.lua')
-rw-r--r--honey/std.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/honey/std.lua b/honey/std.lua
index 2a5d2c2..98e942d 100644
--- a/honey/std.lua
+++ b/honey/std.lua
@@ -7,10 +7,17 @@ honey.terminate = init.terminate
honey.ecs = require 'honey.ecs'
--honey.standardSystems = require 'honey.ecs-systems'
honey.mesh = require 'honey.mesh'
-honey.Shader = require 'honey.shader'
+honey.shader = require 'honey.shader'
honey.Window = require 'honey.window'
+-- image
+local image = require 'honey.image'
+for k, v in pairs(image) do
+ honey.image[k] = v
+end
+
+
local glm = require 'honey.glm'
honey.Vec3 = glm.Vec3
honey.Mat4 = glm.Mat4