Skip to content

Commit

Permalink
delete temp images
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Taplin committed Jun 26, 2013
1 parent 7f4636e commit 977ebd2
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self):
self.text_color = (252,248,252)
self.load_content()
pygame.display.set_icon(self.image_manager.get_image('icon'))
self.current_level = 3
self.current_level = 1
self.hud = hud.GameHud(self, (320, 32), (0,0,0))
self.game_world = pygame.rect.Rect(0, SCREEN_RECT.top + self.hud.height,
320, SCREEN_RECT.height - self.hud.height)
Expand All @@ -55,7 +55,7 @@ def reset_player(self):

def reset(self):
# reset the game back to original state
self.current_level = 3
self.current_level = 1
self.reset_player()
self.change_state(states.TitleScreenState(self),
engine.graphics.FadeAnimation("in"))
Expand Down
Binary file removed res/images/Temp/background5.bmp
Binary file not shown.
Binary file removed res/images/Temp/enemy12.bmp
Binary file not shown.
Binary file removed res/images/Temp/enemy13.bmp
Binary file not shown.

0 comments on commit 977ebd2

Please sign in to comment.