summaryrefslogtreecommitdiff
path: root/txtgameengine/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'txtgameengine/app.py')
-rw-r--r--txtgameengine/app.py2
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: