summaryrefslogtreecommitdiff
path: root/honey/std.lua
diff options
context:
space:
mode:
Diffstat (limited to 'honey/std.lua')
-rw-r--r--honey/std.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/honey/std.lua b/honey/std.lua
index 78b2525..ba86eb0 100644
--- a/honey/std.lua
+++ b/honey/std.lua
@@ -3,6 +3,7 @@ local window = require 'honey.window'
local mesh = require 'honey.mesh'
local Vec3 = require 'honey.vec3'
local Mat4 = require 'honey.mat4'
+local Shader = require 'honey.shader'
honey.init = init.init
honey.terminate = init.terminate
@@ -11,3 +12,5 @@ honey.Window = window.Window
honey.mesh = mesh
honey.Vec3 = Vec3
honey.Mat4 = Mat4
+
+honey.Shader = Shader