diff options
Diffstat (limited to 'txtgameengine/app.py')
-rw-r--r-- | txtgameengine/app.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/txtgameengine/app.py b/txtgameengine/app.py index f3cb711..e7121da 100644 --- a/txtgameengine/app.py +++ b/txtgameengine/app.py @@ -1,8 +1,10 @@ import time +from pathlib import Path from .platform import PlatformComponent, RenderComponent, ShaderComponent EPSILON = 1.e-10 +base_path = Path(__file__).parent class TxtGameApp: |