avocados/support/bootstrap.py

18 lines
329 B
Python
Raw Normal View History

2014-08-30 15:19:15 +02:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*- #
2014-08-30 15:19:15 +02:00
import sys
from colors import *
from screen import *
def main():
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
pygame.display.update()
if __name__ == "__main__": main()