diff --git a/src/snake.py b/src/snake.py index e69de29..d7718d1 100644 --- a/src/snake.py +++ b/src/snake.py @@ -0,0 +1,5 @@ +from tilemap.playground import PlayGround + +if __name__ == "__main__": + pg = PlayGround(geometry = (1, 3)) + pass \ No newline at end of file diff --git a/src/tilemap/__init__.py b/src/tilemap/__init__.py index e69de29..90f1c69 100644 --- a/src/tilemap/__init__.py +++ b/src/tilemap/__init__.py @@ -0,0 +1 @@ +from . import playground \ No newline at end of file diff --git a/src/tilemap/tilemap.py b/src/tilemap/playground.py similarity index 100% rename from src/tilemap/tilemap.py rename to src/tilemap/playground.py