mirror of
https://github.com/BlackMATov/evolved.lua.git
synced 2025-12-14 20:11:27 +07:00
30 lines
575 B
Lua
30 lines
575 B
Lua
rockspec_format = "3.0"
|
|
package = "evolved.lua"
|
|
version = "scm-0"
|
|
source = {
|
|
url = "git://github.com/BlackMATov/evolved.lua",
|
|
}
|
|
description = {
|
|
homepage = "https://github.com/BlackMATov/evolved.lua",
|
|
summary = "Evolved ECS (Entity-Component-System) for Lua",
|
|
license = "MIT",
|
|
labels = {
|
|
"ecs",
|
|
"entity",
|
|
"entities",
|
|
"component",
|
|
"components",
|
|
"entity-component",
|
|
"entity-component-system",
|
|
},
|
|
}
|
|
dependencies = {
|
|
"lua >= 5.1",
|
|
}
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
evolved = "evolved.lua",
|
|
}
|
|
}
|