Преглед изворни кода

doc: added a new link to similar projects

Michele Caini пре 5 година
родитељ
комит
481c49e18e
1 измењених фајлова са 5 додато и 1 уклоњено
  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
     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:
   * [ecsy](https://github.com/MozillaReality/ecsy): I haven't had the time to
     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:
   * [Legion](https://github.com/TomGillen/legion): a chunk based archetype ECS.
   * [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
     hierarchical bitsets that allows different types of storage as needed.