| summaryrefslogtreecommitdiff |
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2021-09-08 22:27:22 +0200 |
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2021-09-08 22:27:22 +0200 |
| commit | cb767eaa8fb4000acd269bba851df2d6cbc10968 (patch) | |
| tree | 1931b35160e776c617797b845bc168cce3a64525 /data/examples/blackjack/global.fate | |
| parent | a12e2813b03cbb1253d5105f9e8d97781ad11db7 (diff) | |
Bug fix + blackjack update.
Diffstat (limited to 'data/examples/blackjack/global.fate')
| -rw-r--r-- | data/examples/blackjack/global.fate | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/data/examples/blackjack/global.fate b/data/examples/blackjack/global.fate index acf054e..d08706b 100644 --- a/data/examples/blackjack/global.fate +++ b/data/examples/blackjack/global.fate @@ -15,12 +15,8 @@ ) ) -(global int marker_0) - (declare_text_effect action_description) -(global int marker_1) - (define_sequence money_acquisition ((int amount)) (set! player.money (+ player.money amount)) (if (> amount 0) @@ -30,8 +26,6 @@ ) ) -(global int marker_2) - (define_sequence money_loss ((int amount)) (set! player.money (- player.money amount)) (if (> amount 0) @@ -41,8 +35,4 @@ ) ) -(global int marker_3) - (declare_input_event escape) - -(global int marker_4) |


