mirror of
https://github.com/bendtherules/pytry.git
synced 2026-08-18 22:03:03 +00:00
All the previous files
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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();
|
||||
Reference in New Issue
Block a user