Skip to content

Instantly share code, notes, and snippets.

@ElQuintoViento
ElQuintoViento / space_invaders.py
Created June 21, 2017 05:53
Simple space invaders game
#!/usr/local/bin/python3
from time import time
import pygame
#
SECONDS_TO_MICRO_SECONDS = 1000000
#
TUPLE_COLOR_BLACK = (0, 0, 0)
TUPLE_COLOR_GREEN = (0, 226, 143)