mirror of
https://github.com/BlackMATov/evolved.lua.git
synced 2025-12-16 14:11:16 +07:00
v1.0.0
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
local evolved = {
|
local evolved = {
|
||||||
__HOMEPAGE = 'https://github.com/BlackMATov/evolved.lua',
|
__HOMEPAGE = 'https://github.com/BlackMATov/evolved.lua',
|
||||||
__DESCRIPTION = 'Evolved ECS (Entity-Component-System) for Lua',
|
__DESCRIPTION = 'Evolved ECS (Entity-Component-System) for Lua',
|
||||||
__VERSION = '0.0.1',
|
__VERSION = '1.0.0',
|
||||||
__LICENSE = [[
|
__LICENSE = [[
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
|
|||||||
34
rockspecs/evolved.lua-1.0.0-0.rockspec
Normal file
34
rockspecs/evolved.lua-1.0.0-0.rockspec
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
rockspec_format = "3.0"
|
||||||
|
package = "evolved.lua"
|
||||||
|
version = "1.0.0-0"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/BlackMATov/evolved.lua",
|
||||||
|
tag = "v1.0.0",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
homepage = "https://github.com/BlackMATov/evolved.lua",
|
||||||
|
summary = "Evolved ECS (Entity-Component-System) for Lua",
|
||||||
|
detailed = [[
|
||||||
|
`evolved.lua` is a fast and flexible ECS (Entity-Component-System) library for Lua.
|
||||||
|
It is designed to be simple and easy to use, while providing all the features needed to create complex systems with blazing performance.
|
||||||
|
]],
|
||||||
|
license = "MIT",
|
||||||
|
labels = {
|
||||||
|
"ecs",
|
||||||
|
"entity",
|
||||||
|
"entities",
|
||||||
|
"component",
|
||||||
|
"components",
|
||||||
|
"entity-component",
|
||||||
|
"entity-component-system",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua >= 5.1",
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
evolved = "evolved.lua",
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,10 +3,15 @@ package = "evolved.lua"
|
|||||||
version = "scm-0"
|
version = "scm-0"
|
||||||
source = {
|
source = {
|
||||||
url = "git://github.com/BlackMATov/evolved.lua",
|
url = "git://github.com/BlackMATov/evolved.lua",
|
||||||
|
branch = "main",
|
||||||
}
|
}
|
||||||
description = {
|
description = {
|
||||||
homepage = "https://github.com/BlackMATov/evolved.lua",
|
homepage = "https://github.com/BlackMATov/evolved.lua",
|
||||||
summary = "Evolved ECS (Entity-Component-System) for Lua",
|
summary = "Evolved ECS (Entity-Component-System) for Lua",
|
||||||
|
detailed = [[
|
||||||
|
`evolved.lua` is a fast and flexible ECS (Entity-Component-System) library for Lua.
|
||||||
|
It is designed to be simple and easy to use, while providing all the features needed to create complex systems with blazing performance.
|
||||||
|
]],
|
||||||
license = "MIT",
|
license = "MIT",
|
||||||
labels = {
|
labels = {
|
||||||
"ecs",
|
"ecs",
|
||||||
|
|||||||
Reference in New Issue
Block a user