Merge pull request #46 from john-cheesman/correct-readme-code

Correct syntax in Systems example code
This commit is contained in:
Justin van der Leij 2022-10-17 15:12:18 +02:00 committed by GitHub
commit 821b36c903
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -266,10 +266,10 @@ Systems can have multiple pools.
```lua
-- Create a System
local mySystemClass = Concord.system(pool = {"position"}) -- Pool named 'pool' will contain all Entities with a position Component
local mySystemClass = Concord.system({pool = {"position"}}) -- Pool named 'pool' will contain all Entities with a position Component
-- Create a System with multiple pools
local mySystemClass = Concord.system(
local mySystemClass = Concord.system({
pool = { -- This pool will be named 'pool'
"position",
"velocity",
@ -278,7 +278,7 @@ local mySystemClass = Concord.system(
"health",
"damageable",
}
)
})
```
```lua