diff options
author | rom <romangraef@gmail.com> | 2021-04-24 01:56:51 +0200 |
---|---|---|
committer | rom <romangraef@gmail.com> | 2021-04-24 01:56:51 +0200 |
commit | 156114359f6bb26a3cca198ac7a31bddc44381f7 (patch) | |
tree | a830599ffe4bc502d766861da8787c063b7a1a47 /txtgameengine/app.py | |
parent | 79a6c6b13f42a6a2cd4a1b0dd4a93e25756e1b87 (diff) | |
download | txtgameengine-156114359f6bb26a3cca198ac7a31bddc44381f7.tar.gz txtgameengine-156114359f6bb26a3cca198ac7a31bddc44381f7.tar.bz2 txtgameengine-156114359f6bb26a3cca198ac7a31bddc44381f7.zip |
fonts
Diffstat (limited to 'txtgameengine/app.py')
-rw-r--r-- | txtgameengine/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/txtgameengine/app.py b/txtgameengine/app.py index e7121da..58b239f 100644 --- a/txtgameengine/app.py +++ b/txtgameengine/app.py @@ -4,7 +4,7 @@ from pathlib import Path from .platform import PlatformComponent, RenderComponent, ShaderComponent EPSILON = 1.e-10 -base_path = Path(__file__).parent +builtin_resource_path = Path(__file__).parent / 'builtin_res' class TxtGameApp: |