diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-25 15:52:28 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-25 15:52:28 +0200 |
commit | 27057a601c43ab5a6dcaa5b396c6b3d891c921b9 (patch) | |
tree | 576348f7c7f25b6a6c7283be29a23aa08e6d1688 /game | |
parent | 84ff4aa8fc7714b5841097e0dd800085982321e4 (diff) |
Sorting out import situation and making enum names for tiles for readability.
Diffstat (limited to 'game')
-rw-r--r-- | game/__init__.py | 2 | ||||
-rw-r--r-- | game/game.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/game/__init__.py b/game/__init__.py new file mode 100644 index 0000000..066e2e3 --- /dev/null +++ b/game/__init__.py @@ -0,0 +1,2 @@ +""" game - pelin kulkuun liittyvä logiikka """ +from .game import Game diff --git a/game/game.py b/game/game.py index 4420aed..76ee382 100644 --- a/game/game.py +++ b/game/game.py @@ -1,5 +1,5 @@ """ game/game.py - pelin etenemiseen liittyvä ohjaus """ -from tui.tui import Action +from tui import Action class Game: """ Game - peli """ |