-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
This commit is contained in:
parent
8285bde71d
commit
6217aec6be
10 changed files with 265 additions and 11 deletions
18
dub.json
18
dub.json
|
|
@ -1,9 +1,21 @@
|
|||
{
|
||||
"name": "dlps",
|
||||
"name": "ecs",
|
||||
"authors": [
|
||||
"Michał Masiukiewicz", "Dawid Masiukiewicz"
|
||||
],
|
||||
"description": "Dynamic Entity Component System",
|
||||
"copyright": "Copyright © 2017-2018, Michał Masiukiewicz",
|
||||
"license": "MIT"
|
||||
"copyright": "Copyright © 2017-2018, Michał Masiukiewicz, Dawid Masiukiewicz",
|
||||
"license": "BSD",
|
||||
"sourcePaths" : ["source\/"],
|
||||
"configurations" : [
|
||||
{
|
||||
"name" : "library",
|
||||
"targetType" : "library"
|
||||
},
|
||||
{
|
||||
"name" : "tests",
|
||||
"sourcePaths" : ["source\/","tests\/"],
|
||||
"targetType" : "executable"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue