diff options
Diffstat (limited to 'test.stage')
-rw-r--r-- | test.stage | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/test.stage b/test.stage deleted file mode 100644 index cc765a4..0000000 --- a/test.stage +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | |||
2 | game.title = "Code Test"; | ||
3 | game.author = "Mike Buland"; | ||
4 | game.version = 1; | ||
5 | game.revision = 0; | ||
6 | game.start = <<start>>; | ||
7 | |||
8 | global | ||
9 | { | ||
10 | command: "exit" | ||
11 | { | ||
12 | exit(); | ||
13 | } | ||
14 | } | ||
15 | |||
16 | function getVal() | ||
17 | { | ||
18 | global.stuff = {'hi': 5 }; | ||
19 | } | ||
20 | |||
21 | situation <<start>> | ||
22 | { | ||
23 | setup | ||
24 | { | ||
25 | if true then | ||
26 | { | ||
27 | getVal(); | ||
28 | } | ||
29 | } | ||
30 | |||
31 | enter | ||
32 | { | ||
33 | } | ||
34 | } | ||
35 | |||