diff --git a/Main.py b/Main.py index 252675f..2451de2 100644 --- a/Main.py +++ b/Main.py @@ -4,16 +4,14 @@ import sys import random import time from bullets import Bullet -#from player import Player -#from enemy import Enemy from beings import * from surfaces import Surface ######## Set up things that will not change pygame.init() pygame.display.set_caption('Healthless') -windowX = 640 -windowY = 640 +windowX = 832 +windowY = 832 window = pygame.display.set_mode((windowX,windowY)) icon = pygame.image.load('pics/logo.png') pygame.display.set_icon(icon) diff --git a/beings.py b/beings.py index 1aa14af..5e0519b 100644 --- a/beings.py +++ b/beings.py @@ -6,8 +6,8 @@ from bullets import Bullet import time import sys -windowX = 640 -windowY = 640 +windowX = 832 +windowY = 832 bullets_on_screen = [] enemy_bul_on_screen = []