update motion engine block for clarity
continuous-integration/drone/push Build is passing Details

main
Evan Hemsley 2020-07-27 14:06:30 -07:00
parent 2f2d381696
commit 9af2d23569
1 changed files with 5 additions and 0 deletions

View File

@ -231,6 +231,11 @@ Now, in the final block of our **MotionEngine**, we can perform our collision te
```cs
...
foreach (var entity in TrackedEntities)
{
...
}
foreach (ref readonly var entity in ReadEntities<PositionComponent>())
{
...