From 6852f38a83d094d2c8694ff9ca4df568c0c66ce2 Mon Sep 17 00:00:00 2001 From: prime31 Date: Sun, 19 Dec 2021 19:27:17 -0800 Subject: [PATCH] Update README.md --- zig-ecs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zig-ecs/README.md b/zig-ecs/README.md index 54a24ad..17a3467 100644 --- a/zig-ecs/README.md +++ b/zig-ecs/README.md @@ -1,5 +1,5 @@ # Zig ECS -This is a zigification of the fantasic [Entt](https://github.com/skypjack/entt). Entt is _highly_ templated C++ code which depending on your opinion is either a good thing or satan itself in code form. Zig doesn't have the same concept as C++ templates (thank goodness!) so the templated code was changed over to use Zig's generics and compile time metaprogramming. +Zig ECS is a zig port of the fantasic [Entt](https://github.com/skypjack/entt). Entt is _highly_ templated C++ code which depending on your opinion is either a good thing or satan itself in code form. Zig doesn't have the same concept as C++ templates (thank goodness!) so the templated code was changed over to use Zig's generics and compile time metaprogramming. ## What does a zigified Entt look like? Below are examples of a View and a Group, the two main ways to work with entities in the ecs along with the scaffolding code.