bubel-ecs/dub.json
DanielMz25 6217aec6be -changed README
-license changed to BSD (maybe temporary)
-added configurations to dub.json
-initial ECS implementation (WIP):
	-Manager, System, Entity, Component
	-registering components
	-registering systems
	-calling update
2018-09-07 20:54:29 +02:00

21 lines
No EOL
455 B
JSON
Executable file

{
"name": "ecs",
"authors": [
"Michał Masiukiewicz", "Dawid Masiukiewicz"
],
"description": "Dynamic Entity Component System",
"copyright": "Copyright © 2017-2018, Michał Masiukiewicz, Dawid Masiukiewicz",
"license": "BSD",
"sourcePaths" : ["source\/"],
"configurations" : [
{
"name" : "library",
"targetType" : "library"
},
{
"name" : "tests",
"sourcePaths" : ["source\/","tests\/"],
"targetType" : "executable"
}
]
}