HC/hc-0.1-1.rockspec

26 lines
642 B
Plaintext
Raw Normal View History

2015-10-09 21:09:22 +00:00
package = "HC"
version = "0.1-1"
2015-05-05 00:35:25 +00:00
source = {
2015-10-09 21:09:22 +00:00
url = "git://github.com/vrld/HC.git"
2015-05-05 00:35:25 +00:00
}
2018-04-08 12:12:09 +00:00
description = {
summary="General purpose 2D collision detection in pure Lua",
homepage = "https://hc.readthedocs.io",
license = "MIT",
}
2015-05-05 00:35:25 +00:00
dependencies = {
"lua = 5.1"
}
build = {
type = "builtin",
modules = {
["hardoncollider"] = "init.lua",
["hardoncollider.class"] = "class.lua",
["hardoncollider.gjk"] = "gjk.lua",
["hardoncollider.polygon"] = "polygon.lua",
["hardoncollider.shapes"] = "shapes.lua",
["hardoncollider.spatialhash"] = "spatialhash.lua",
["hardoncollider.vector-light"] = "vector-light.lua",
}
}