mirror of
https://github.com/Keyslam-Group/Concord.git
synced 2025-09-01 11:53:57 -04:00
Fix typos in readme
This commit is contained in:
parent
3b52f28fe0
commit
c217183cb9
1 changed files with 2 additions and 2 deletions
|
@ -440,7 +440,7 @@ local mySystem = myWorld:getSystem(mySystemClass)
|
|||
```lua
|
||||
-- Emit an event
|
||||
|
||||
-- This will call the 'update' function of any added Systems
|
||||
-- This will call the 'update' function of all added Systems if they have one
|
||||
-- They will be called in the order they were added
|
||||
myWorld:emit("update", dt)
|
||||
|
||||
|
@ -565,7 +565,7 @@ local entity_2 = Concord.entity(world)
|
|||
:give(Drawable)
|
||||
|
||||
-- This Entity does exist in the World, but since it doesn't match any System's filters it won't do anything
|
||||
local entity_2 = Concord.entity(world)
|
||||
local entity_3 = Concord.entity(world)
|
||||
:give(Position, 200, 200)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue