Skip to content

Commit 7a29fc1

Browse files
committed
Organized and reformatted code
1 parent bd93c3e commit 7a29fc1

File tree

5 files changed

+263
-250
lines changed

5 files changed

+263
-250
lines changed

main.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import arcade
2+
3+
from src.game import Game
4+
5+
SCREEN_WIDTH = 800
6+
SCREEN_HEIGHT = 600
7+
8+
def main():
9+
game = Game(SCREEN_WIDTH, SCREEN_HEIGHT)
10+
game.setup()
11+
arcade.run()
12+
13+
if __name__ == "__main__":
14+
main()

space-typer.py

Lines changed: 0 additions & 250 deletions
This file was deleted.

0 commit comments

Comments
 (0)