My OOP practice project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
613 B

import pygame
############
bullet_image = pygame.image.load('pics/second_bullet.png')
enemy_bul_img = pygame.image.load('pics/bullet.png')
enemy_image = pygame.image.load('pics/32x64.png')
player_image = pygame.image.load('pics/32x64.png')
timesurf_image = pygame.image.load('pics/timesurf.png')
randsurf_image = pygame.image.load('pics/randsurf.png')
logo = pygame.image.load('pics/logo.png')
############
window_caption = 'Healthless'
gamefont = 'freesansbold.ttf'
############
windowX = 832
windowY = 832
FPS = 70
############
DEBUG = False