Skip to content

Commit a569d02

Browse files
committed
mainmenu design
1 parent f533a9d commit a569d02

File tree

7 files changed

+5
-0
lines changed

7 files changed

+5
-0
lines changed

assets/background.png

-1.18 KB
Binary file not shown.

assets/enemy_red.png

-280 Bytes
Binary file not shown.

assets/heart.png

-193 Bytes
Binary file not shown.

assets/laser_enemy.png

-154 Bytes
Binary file not shown.

assets/laser_player.png

-154 Bytes
Binary file not shown.

assets/player.png

-299 Bytes
Binary file not shown.

main.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@
3434

3535
# Font
3636
font = pygame.image.load(os.path.join('data', 'font', 'small_font.png'))
37+
38+
# Cursor
39+
CURSOR = pygame.image.load(os.path.join('data', 'assets', 'cursor.png'))
40+
CURSOR.set_colorkey((BLACK))
41+
3742
class Laser:
3843
def __init__(self, x, y, img):
3944
self.x = x

0 commit comments

Comments
 (0)