From 61948531c850c024f80026e4716274fbcbd3d8fb Mon Sep 17 00:00:00 2001 From: Julius Riegel Date: Sat, 13 Jan 2018 15:07:09 +0100 Subject: [PATCH] more print stuff --- .idea/workspace.xml | 32 ++++++++++++++++---------------- main.py | 2 ++ 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index db0a9b1..24789c8 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,7 +2,7 @@ - + @@ -456,16 +456,6 @@ - - - - - - - - - - @@ -474,5 +464,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/main.py b/main.py index ed05438..df08aee 100644 --- a/main.py +++ b/main.py @@ -27,12 +27,14 @@ def main(): #pygame stuff screen = graphiclib.Screen(size=(1000,1000)) + print('created screen') all_sprites = pygame.sprite.RenderUpdates() list = graphiclib.List((0,0),(500,1000)) all_sprites.add(list) all_sprites.add(camera) clock = pygame.time.Clock() running = True + print('in running loop') while running: clock.tick(25)