Skip to content
Snippets Groups Projects
Commit 22b91906 authored by Hameed Andy's avatar Hameed Andy
Browse files

Fixed display window header title | changed coordinates of window location

parent 370ee91b
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,11 @@
# @brief implements the main interface of this game
# @date 11/09/2018
#importing necessary libraries
x = 10
y = 40
import os
os.environ['SDL_VIDEO_WINDOW_POS'] = "%d,%d" % (x,y)
import pygame, sys
import highscore, theme
......
......@@ -56,7 +56,7 @@ class Themes():
theme.fill(white_green)
mousepos = pygame.mouse.get_pos() #checking mouse position
mouseclick = pygame.mouse.get_pressed()#checking mouse pressed
pygame.display.set_caption("Choose Theme")
pygame.display.set_caption("Snake 2.o")
Themes.custom_text('Choose Your Theme',"Roboto-Light.ttf",45,[96,96,96],(70,50),theme)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment