#!/usr/bin/python
############
# My_Window.py
# This program creates a Pygame Window
# With a simple event queue
############ 

import os, sys
import pygame
from pygame.locals import*

pygame.init()
My_Window = pygame.display.set_mode((640, 480))


still_playing = 1
while (still_playing==1):
	for event in pygame.event.get():
		if event.type is QUIT:
			still_playing = 0
