Update entity.md (#524)

Small typo fix in wiki
This commit is contained in:
Sackhorn
2020-07-19 10:20:52 +02:00
committed by GitHub
parent f561cf9c8f
commit d989f0edf2

View File

@@ -224,7 +224,7 @@ registry.emplace<position>(entity, 0., 0.);
// ...
auto &velocity = registry.emplace<velocity>(entity);
auto &vel = registry.emplace<velocity>(entity);
vel.dx = 0.;
vel.dy = 0.;
```