diff options
Diffstat (limited to 'script.rpy')
-rw-r--r-- | script.rpy | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/script.rpy b/script.rpy new file mode 100644 index 0000000..95339b4 --- /dev/null +++ b/script.rpy @@ -0,0 +1,13 @@ +# The script of the game goes in this file.
+define e = Character("SDK")
+
+label start:
+ scene black
+ centered "Click to load game data"
+ $ GAME_LOADER()
+ menu:
+ "Quest editor":
+ call quest_editors
+ "Quit":
+ return
+ return
|