added breezefield as a dep, needed to edit some stuff to make it work but it works

This commit is contained in:
2021-05-08 11:42:13 +02:00
parent 93efcd6829
commit f96a1e19ec
4 changed files with 362 additions and 0 deletions

24
deps/breezefield/init.lua vendored Normal file
View File

@@ -0,0 +1,24 @@
-- breezefield: init.lua
--[[
implements Collider and World objects
Collider wraps the basic functionality of shape, fixture, and body
World wraps world, and provides automatic drawing simplified collisions
]]--
local bf = {}
local BASE = (...) .. "."
local Collider = require(BASE .. 'collider')
local World = require(BASE .. 'world')
function bf.newWorld(...)
return bf.World:new(...)
end
bf.Collider = Collider
bf.World = World
return bf