summaryrefslogtreecommitdiff
path: root/honey/std.lua
blob: a08bf35f9bb80bfe61a58f07e6766b46e1d74602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
local init = require 'honey.init'

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

honey.ecs             = require 'honey.ecs'
honey.standardSystems = require 'honey.ecs-systems'
honey.mesh            = require 'honey.mesh'
honey.Shader          = require 'honey.shader'
honey.Window          = require 'honey.window'


local glm = require 'honey.glm'
honey.Vec3 = glm.Vec3
honey.Mat4 = glm.Mat4
honey.Quaternion = glm.Quaternion