All the previous files

This commit is contained in:
bendtherules
2014-02-05 10:44:04 +05:30
commit 12135f9a60
160 changed files with 8827 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import pygame
from pygame.locals import *
pygame.init()
pygame.display.set_mode((200,200))
pygame.display.set_caption("wat?")
a=pygame.image.load("a.png");
while True:
# event check
for event in pygame.event.get():
if event.type == QUIT:
exit();