aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/README.md
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-06-23 16:06:42 +0100
committerGitHub <noreply@github.com>2018-06-23 16:06:42 +0100
commit11a6d07652c98b13be6d8097e389480453a7c568 (patch)
tree3f06a7d35e8ec647041fccea90d5d763ebe6849f /yage/entity/README.md
parentb1673de1b46bd2e566b7c66197ad989d0323f061 (diff)
parent93c8bfea8b5bcfc0d6513d93cec0eafe82dc465a (diff)
downloadYAGE-master.tar.gz
YAGE-master.zip
Merge pull request #20 from ymherklotz/developHEADmaster
Develop
Diffstat (limited to 'yage/entity/README.md')
-rw-r--r--yage/entity/README.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/yage/entity/README.md b/yage/entity/README.md
index 6a7704c6..18ac16cf 100644
--- a/yage/entity/README.md
+++ b/yage/entity/README.md
@@ -1,9 +1,10 @@
# Entity Component System (ECS)
-This ECS is heavily inspired from the [Entityx component system](__fix
-link__). It is a much simpler and less efficient implementation, as it does not
-support dedicated pools for the different components, and only stores them on
-the heap and are directed to by pointers.
+This ECS is heavily inspired from the [Entityx component
+system](https://github.com/alecthomas/entityx). It is a much simpler and less
+efficient implementation, as it does not support dedicated pools for the
+different components, and only stores them on the heap and are directed to by
+pointers.
A future improvement would be to store the components in a contiguous area in
memory, so that the iteration through them can be more efficient.