Skip to content

Commit 4e9aad9

Browse files
added some game title and icons :)
1 parent 1d888f8 commit 4e9aad9

File tree

8 files changed

+13
-1
lines changed

8 files changed

+13
-1
lines changed

Chess_Game/ChessGame.py

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
MAX_FPS = 15
88
IMAGES = {}
99

10+
11+
icon = p.image.load("images\icon.ico")
12+
p.display.set_icon(icon)
13+
14+
p.display.set_caption("Chess Game")
15+
1016
def loadImages():
1117
pieces = ['wp', 'wR', 'wN', 'wB', 'wQ', 'wK', 'bp', 'bR', 'bN', 'bB', 'bQ', 'bK' ]
1218
for piece in pieces:
Binary file not shown.

Chess_Game/images/icon.ico

264 KB
Binary file not shown.

Color_Game/main.py

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ def start_game(event):
7474
window = tk.Tk()
7575
font = 'Helvetica'
7676
window.title("Color Game")
77+
window.iconbitmap("color_game_icon.ico")
7778
window.geometry("375x250")
7879
window.resizable(False, False)
7980

Simple_dice/dice.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ def on_leave(event):
1616

1717
root = Tk()
1818
root.geometry("99x117+1153+210")
19+
root.title("Dice")
1920
label = Label(root, text="Simple Dice" ,wraplength=100)
2021
e = Entry(root, width=5)
2122
button1 = Button(root, text="Roll", command=roll,wraplength=100)

Snake_game/main.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@
1313
display_width = 600
1414
display_height = 500
1515

16+
icon = pygame.image.load("snakeicon.ico")
17+
pygame.display.set_icon(icon)
18+
1619
display = pygame.display.set_mode(
1720
(display_width, display_height)) # Apply size to the game
18-
pygame.display.set_caption('Snake') # Set title of game window
21+
pygame.display.set_caption('Snake Game') # Set title of game window
1922

2023
clock = pygame.time.Clock()
2124

Snake_game/snakeicon.ico

66.1 KB
Binary file not shown.

highest_score.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1

0 commit comments

Comments
 (0)