Skip to content

Commit

Permalink
Merge pull request #1 from illume/python-the-third
Browse files Browse the repository at this point in the history
Python the Third
  • Loading branch information
illume authored Dec 17, 2023
2 parents cd267b5 + 0ee7f1b commit 6828da9
Show file tree
Hide file tree
Showing 85 changed files with 10,259 additions and 9,259 deletions.
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
dist/
build/
*.egg-info/

# Virtual environments
venv/
env/
.env/

# IDE specific files
.idea/
.vscode/

# Compiled Python files
*.pyc

# Logs
*.log

# Miscellaneous
.DS_Store
Empty file removed .nomedia
Empty file.
51 changes: 0 additions & 51 deletions BUGS.txt

This file was deleted.

7 changes: 0 additions & 7 deletions CHANGES.txt

This file was deleted.

68 changes: 0 additions & 68 deletions Makefile

This file was deleted.

3 changes: 2 additions & 1 deletion README.txt → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Zanthor!

run_game.py

```
KEYBOARD: arrows or wasd - to move. F10 pause. f/space/ctrl to fire.
MOUSE: button one fire. button two move.
JOYSTICK: game pad move. button 1 fire.
Expand All @@ -23,7 +24,7 @@ JOYSTICK: game pad move. button 1 fire.
// \ / \\ Thank you uninstalling.
|| | | ||
// | \ Thank you for deleting.

```

Zanthor was originally a pyweek 2 entry.
http://www.imitationpickles.org/pyweek2/wiki/index
Expand Down
66 changes: 0 additions & 66 deletions TODO.txt

This file was deleted.

4 changes: 0 additions & 4 deletions android.txt

This file was deleted.

4 changes: 0 additions & 4 deletions configure

This file was deleted.

11 changes: 7 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import sys
#sys.path.insert(0, "lib")

# sys.path.insert(0, "lib")

import zanthor.main


def main():
print ("running main()")
print("running main()")
zanthor.main.main()



if __name__ == "__main__":
zanthor.main.main()

5 changes: 3 additions & 2 deletions run_game.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import sys
#sys.path.insert(0, "lib")

# sys.path.insert(0, "lib")

import zanthor.main

if __name__ == "__main__":
zanthor.main.main()

Loading

0 comments on commit 6828da9

Please sign in to comment.