From 89572c1648128456822cf2dda07b13e78cfc2813 Mon Sep 17 00:00:00 2001 From: sanine Date: Mon, 13 Mar 2023 02:42:16 -0500 Subject: render all shapes --- honey/std.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'honey/std.lua') 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 -- cgit v1.2.1