Added empty init file to support folder

master
David Raison 2014-08-30 15:38:47 +02:00
parent a213b51705
commit c241f279bd
4 changed files with 11 additions and 1 deletions

2
.gitignore vendored
View File

@ -52,3 +52,5 @@ coverage.xml
# Sphinx documentation
docs/_build/
include
local

10
game.py
View File

@ -6,15 +6,23 @@ Avocados and stuff
import os, random
import pygame
from pygame.locals import *
from support import colors
import hud
# Move this outside
screen_width = 800
screen_height = 600
screen = pygame.display.set_mode((screen_width,screen_height))
bg = (0,0,0)
screen.fill(bg)
def main():
pygame.init()
pygame.display.set_caption('Avocados')
clock = pygame.time.Clock()
running = True
while running:
# Limit to 50 fps
time_passed = clock.tick(30)

0
requirements.txt Normal file
View File

0
support/__init__.py Normal file
View File