pufferfish handling stub
This commit is contained in:
parent
cf64fb4851
commit
e8a00b9907
@ -253,6 +253,17 @@ impl Screen for InGameScreen {
|
||||
|
||||
}
|
||||
|
||||
// Iterates over pufferfish
|
||||
for pufferfish in game_core.world.pufferfish.iter_mut(){
|
||||
|
||||
pufferfish.handle_logic(&mut game_core.player, dt);
|
||||
pufferfish.render(&mut context_2d, &mut game_core.player, &mut game_core.resources, dt);
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
// Removes whirlpools set for removal
|
||||
game_core.world.whirlpool.retain(|x| !x.should_remove());
|
||||
|
||||
|
Reference in New Issue
Block a user