diff options
author | Roman Gräf <romangraef@gmail.com> | 2020-04-20 16:02:35 +0200 |
---|---|---|
committer | Roman Gräf <romangraef@gmail.com> | 2020-04-20 16:02:35 +0200 |
commit | c1b75c16eb5132017786134ec61bdf38bf1f6680 (patch) | |
tree | 31c2ea3b0ea6744bf823ed37569aec2b559688cc /save_state.gd | |
parent | 37e0a74ed171f970937b726fb51d02dbef050949 (diff) | |
download | LDJam46-c1b75c16eb5132017786134ec61bdf38bf1f6680.tar.gz LDJam46-c1b75c16eb5132017786134ec61bdf38bf1f6680.tar.bz2 LDJam46-c1b75c16eb5132017786134ec61bdf38bf1f6680.zip |
tutorial ( at least one tutorial )
Diffstat (limited to 'save_state.gd')
-rw-r--r-- | save_state.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/save_state.gd b/save_state.gd index edd6ed5..2e54d6c 100644 --- a/save_state.gd +++ b/save_state.gd @@ -54,4 +54,10 @@ func pack_data(): "coffee_beans": coffee_beans, "bitcoin": bitcoin, "riot_cooldown": riot_cooldown, + "tutorial": tutorial, } + +var tutorial = { + "introduction": false, +} + |