diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-23 13:57:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-23 13:57:06 -0300 |
commit | 3b79dc162b6604bd4d1facbc5015443d0f0d7016 (patch) | |
tree | 6c9670feec76685c37e580076cd54e4b84ab92ff /script.rpy | |
download | sdk-3b79dc162b6604bd4d1facbc5015443d0f0d7016.tar.gz sdk-3b79dc162b6604bd4d1facbc5015443d0f0d7016.tar.bz2 sdk-3b79dc162b6604bd4d1facbc5015443d0f0d7016.tar.xz sdk-3b79dc162b6604bd4d1facbc5015443d0f0d7016.zip |
Initial commit
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
|