Files
pytry/I'm the villian/a.py
T
2014-02-05 10:44:04 +05:30

14 lines
311 B
Python

import math;
import pygame;
from pygame.locals import *
pygame.init()
surf=pygame.display.set_mode((400,400))
pygame.display.set_caption("Wtf is this??")
#c=pygame.time.Clock();
while True:
# event check
for event in pygame.event.get():
if event.type == QUIT:
exit();
#c.tick();