Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aramgutang committed Jan 28, 2011
0 parents commit 6d0c4df
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Empty file added lingua/__init__.py
Empty file.
17 changes: 17 additions & 0 deletions play.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import pygame
from pygame.locals import *

pygame.init()
screen = pygame.display.set_mode((800, 600))
pygame.display.set_caption('Lingua France')

def main():
running = True
while running:
pygame.time.delay(10)
for event in pygame.event.get():
if event.type == QUIT:
running = False
pygame.quit()

if __name__ == '__main__': main()

0 comments on commit 6d0c4df

Please sign in to comment.