Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Commit

Permalink
use new game icon
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasHazardous committed Oct 23, 2022
1 parent 39c631d commit 19ead1a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/stageLoader.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ def __init__(self):
self.__clock = pygame.time.Clock()

self.__screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT), flags, DEPTH)

iconImg = pygame.image.load("./assets/images/icon.png").convert()
pygame.display.set_icon(iconImg)

self.__playerSpritesheet = pygame.image.load(SPRITESHEET_PATH + "player.png").convert_alpha()
self.__shootingEnemySpritesheet = pygame.image.load(SPRITESHEET_PATH + "shootingEnemy.png").convert_alpha()
Expand Down

0 comments on commit 19ead1a

Please sign in to comment.