Added initial files

The inital files import the engine and the game directory.  This also
adds a .gitignore file.
This commit is contained in:
Bryan Schumaker 2010-12-30 17:31:13 -05:00
commit 3e49b93f83
4 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.pyc

3
engine/__init__.py Normal file
View File

@ -0,0 +1,3 @@
# Bryan Schumaker (12 / 30 / 2010)
import games

3
games/__init__.py Normal file
View File

@ -0,0 +1,3 @@
# Bryan Schumaker (12 / 30 / 2010)
print "games..."

4
offler.py Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/python2
# Bryan Schumaker (12 / 30 / 2010)
import engine