mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
20 lines
290 B
Python
20 lines
290 B
Python
# Author - Kristiāns Francis Cagulis
|
|
# Date - 03.03.2022
|
|
# Title - Space invaders
|
|
|
|
import pygame
|
|
import math
|
|
import random
|
|
|
|
# colors (R, G, B)
|
|
BLUE = (16, 16, 69)
|
|
WHITE = (255, 255, 255)
|
|
|
|
|
|
def main():
|
|
SCREEN = pygame.display.set_mode((800, 800))
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |