Browse Source

doc: added a new link to similar projects

Michele Caini 5 years ago
parent
commit
481c49e18e
1 changed files with 5 additions and 1 deletions
  1. 5 1
      docs/md/references.md

+ 5 - 1
docs/md/references.md

@@ -27,6 +27,10 @@ I hope this list can grow much more in the future:
   * [EntityX](https://github.com/alecthomas/entityx): a bitset based ECS that
   * [EntityX](https://github.com/alecthomas/entityx): a bitset based ECS that
     uses a single large matrix of components indexed with entities.
     uses a single large matrix of components indexed with entities.
 
 
+* Go:
+  * [gecs](https://github.com/tutumagi/gecs): a sparse sets based ECS inspired 
+    by `EnTT`.
+
 * Javascript:
 * Javascript:
   * [ecsy](https://github.com/MozillaReality/ecsy): I haven't had the time to
   * [ecsy](https://github.com/MozillaReality/ecsy): I haven't had the time to
     investigate the underlying design of `ecsy` but it looks cool anyway.
     investigate the underlying design of `ecsy` but it looks cool anyway.
@@ -34,7 +38,7 @@ I hope this list can grow much more in the future:
 * Rust:
 * Rust:
   * [Legion](https://github.com/TomGillen/legion): a chunk based archetype ECS.
   * [Legion](https://github.com/TomGillen/legion): a chunk based archetype ECS.
   * [Shipyard](https://github.com/leudz/shipyard): it borrows some ideas from
   * [Shipyard](https://github.com/leudz/shipyard): it borrows some ideas from
-    `EnTT` and offers a sparse-sets based ECS with grouping functionalities.
+    `EnTT` and offers a sparse sets based ECS with grouping functionalities.
   * [Specs](https://github.com/amethyst/specs): a parallel ECS based mainly on
   * [Specs](https://github.com/amethyst/specs): a parallel ECS based mainly on
     hierarchical bitsets that allows different types of storage as needed.
     hierarchical bitsets that allows different types of storage as needed.