blob: d6098443eb0a46cd9620a2c4adac55047a1b7fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
local init = require 'honey.init'
honey.init = init.init
honey.loop = init.loop
honey.terminate = init.terminate
nvg = honey.nvg
ode = honey.ode
gl = honey.gl
glfw = honey.glfw
honey.ecs = require 'honey.ecs'
honey.mesh = require 'honey.mesh'
honey.shader = require 'honey.shader'
honey.Window = require 'honey.window'
-- image
local image = require 'honey.image'
for k, v in pairs(image) do
honey.image[k] = v
end
local glm = require 'honey.glm'
Vec3 = glm.Vec3
Mat4 = glm.Mat4
Quaternion = glm.Quaternion
|