diff options
author | sanine <sanine.not@pm.me> | 2023-03-13 22:42:40 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-03-13 22:42:40 -0500 |
commit | 344d6e68bee7f286f7c4b4b25518367c595b4619 (patch) | |
tree | 9abb86b714fef18aef0d8048bd4931f6adcf9fd0 /honey/std.lua | |
parent | 53b151b3fd6d4c2b953d8ed93261125577f1c123 (diff) |
add shader.lua
Diffstat (limited to 'honey/std.lua')
-rw-r--r-- | honey/std.lua | 3 |
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 |