From b00fe8fe50392a75529864fe03399fa3a0976143 Mon Sep 17 00:00:00 2001 From: Viljami Ilola <+@hix.fi> Date: Mon, 18 Mar 2024 13:05:58 +0200 Subject: internal resolution x10. get rid of rest get_sprites functions --- src/sliceitoff/__main__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/sliceitoff/__main__.py') diff --git a/src/sliceitoff/__main__.py b/src/sliceitoff/__main__.py index 5fc766b..2da9aa8 100644 --- a/src/sliceitoff/__main__.py +++ b/src/sliceitoff/__main__.py @@ -35,15 +35,15 @@ def sliceitoff(): while True: dt = clock.tick(60) - for fun in (status, field): + for fun in (status, field, enemies): fun.update(dt) - + display.update( [ status.sprites, field.sprites, - enemies.get_sprites(), - player.get_sprites() + enemies.sprites, + player.sprites ]) if game.step(): -- cgit v1.2.3