Merge pull request #24 from speakk/patch-1

Fix a typo in README.
This commit is contained in:
Pablo Ariel Mayobre 2021-01-08 03:49:15 -03:00 committed by GitHub
commit d5c551046b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ local Components = Concord.components
## ECS
Concord is an Entity Component System (ECS for short) library.
This is a coding paradigm where _composition_ is used over _inheritance_.
Because of this it is easier to write more modular code. It often allowes you to combine any form of behaviour for the objects in your game (Entities).
Because of this it is easier to write more modular code. It often allows you to combine any form of behaviour for the objects in your game (Entities).
As the name might suggest, ECS consists of 3 core things: Entities, Components, and Systems. A proper understanding of these is required to use Concord effectively.
We'll start with the simplest one.