diff options
author | Roman Gräf <romangraef@loves.dicksinhisan.us> | 2020-08-19 23:12:42 +0200 |
---|---|---|
committer | Roman Gräf <romangraef@loves.dicksinhisan.us> | 2020-08-19 23:14:06 +0200 |
commit | cc0fc4424363fcc2ccdbc8b0854b20147a2dd335 (patch) | |
tree | b6bc647e47fb44faecec38d056f15a9ed207b7f4 /Game Test.py | |
parent | 37c533ae65e414ac43f3e1eb3ee04fe1760cdd46 (diff) | |
download | Rise-of-Todmoldren-cc0fc4424363fcc2ccdbc8b0854b20147a2dd335.tar.gz Rise-of-Todmoldren-cc0fc4424363fcc2ccdbc8b0854b20147a2dd335.tar.bz2 Rise-of-Todmoldren-cc0fc4424363fcc2ccdbc8b0854b20147a2dd335.zip |
base engine rework
Diffstat (limited to 'Game Test.py')
-rw-r--r-- | Game Test.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Game Test.py b/Game Test.py index a03ce50..4efee38 100644 --- a/Game Test.py +++ b/Game Test.py @@ -1,7 +1,9 @@ -import turtle
-import time
+import os
import random
+import time
+import turtle
+os.chdir('riseoftodmoldren/res') # Moved assets
window = turtle.Screen()
window.setup(1280, 720)
window.bgcolor("black")
|