blob: 78b252596f0a708c2bfbebd2e00d4e4713924833 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|