diff options
author | sanine <sanine.not@pm.me> | 2023-03-13 02:42:16 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-03-13 02:42:16 -0500 |
commit | 89572c1648128456822cf2dda07b13e78cfc2813 (patch) | |
tree | 78cafed06eb4cb261e53d0de28fa7e170ce55d6f /honey/std.lua | |
parent | bb8c38bffba86cda05e0e8e9b52fb68301286b53 (diff) |
render all shapes
Diffstat (limited to 'honey/std.lua')
-rw-r--r-- | honey/std.lua | 10 |
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 |