Browse Source

Making small steps every day

master
Unbewohnte 4 years ago
parent
commit
00d5d7d04e
  1. 6
      Main.py
  2. 4
      beings.py

6
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)

4
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 = []

Loading…
Cancel
Save