summaryrefslogtreecommitdiff
path: root/honey/std.lua
blob: ba86eb08b45854a3c41213e9821c4bad4066e5bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
local Shader = require 'honey.shader'

honey.init = init.init
honey.terminate = init.terminate

honey.Window = window.Window
honey.mesh = mesh
honey.Vec3 = Vec3
honey.Mat4 = Mat4

honey.Shader = Shader