diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-12-09 07:47:00 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-12-09 07:47:00 -0500 |
commit | d2aa39603eb8a26142a0230188d2572fb0398af5 (patch) | |
tree | 776019932f6d8a9c902deb4c542dae56261c549f /src/gameplay.cpp | |
parent | 23e8deda4bb0ea5a6962a1cfbfd35bc46a8c8b8d (diff) |
dialog clicks
Diffstat (limited to 'src/gameplay.cpp')
-rw-r--r-- | src/gameplay.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/gameplay.cpp b/src/gameplay.cpp index 856b397..f665b38 100644 --- a/src/gameplay.cpp +++ b/src/gameplay.cpp @@ -39,7 +39,7 @@ void CUTSCENEEE(Mob *callee){ player->left = false; player->loc.x += HLINE * 5; - callee->alive = false; + callee->alive = true; } void CUTSCENEEE2(Mob *callee){ @@ -54,6 +54,18 @@ void story(Mob *callee){ player->vel.x = 0; ui::importantText("It was a dark and stormy night..."); ui::waitForDialog(); + ui::importantText("...and Clyne wanted to hear what the click track sounds like."); + ui::waitForDialog(); + ui::importantText("So Clyne made a really long piece of dialog so that the sound"); + ui::waitForDialog(); + ui::importantText("plays"); + ui::waitForDialog(); + ui::importantText("multiple"); + ui::waitForDialog(); + ui::importantText("times."); + ui::waitForDialog(); + ui::importantText("Clyne is quite satisfied."); + ui::waitForDialog(); callee->alive = false; } |