Skip to content

Commit 084928b

Browse files
BratishkaErikStephen Gutekanst
authored andcommitted
all monsters -> all cameras
1 parent 48906c5 commit 084928b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/2022/lets-build-ecs-part-2-databases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Imagine you'd like to have your physics system operate on every entity with `vel
5656
```zig
5757
var players: MultiArrayList(Player) = .{}; // all players
5858
var monsters: MultiArrayList(Monster) = .{}; // all monsters
59-
var cameras: MultiArrayList(Camera) = .{}; // all monsters
59+
var cameras: MultiArrayList(Camera) = .{}; // all cameras
6060
var lights: MultiArrayList(Light) = .{}; // all lights
6161
```
6262

0 commit comments

Comments
 (0)