summaryrefslogtreecommitdiff
path: root/Puzzle_Box/quotes.h
diff options
context:
space:
mode:
authorJesse Morgan <jesterpm@Bismuth.jesterpm.net>2012-04-28 10:30:13 -0700
committerJesse Morgan <jesterpm@Bismuth.jesterpm.net>2012-04-28 10:30:13 -0700
commitfb8e569f2cc63022a81d0a918619fcb7d26e5e06 (patch)
treec4c817f7f209d4ddcf474b4bacf652ebcd900be6 /Puzzle_Box/quotes.h
parentee0e75d9457e4b9df8ee37762d761c352cbb6f67 (diff)
Adding quotes.
Diffstat (limited to 'Puzzle_Box/quotes.h')
-rw-r--r--Puzzle_Box/quotes.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/Puzzle_Box/quotes.h b/Puzzle_Box/quotes.h
new file mode 100644
index 0000000..02c3169
--- /dev/null
+++ b/Puzzle_Box/quotes.h
@@ -0,0 +1,30 @@
+typedef struct {
+ char* line1;
+ char* line2;
+} line_pair_t;
+
+typedef struct {
+ int pairs;
+ line_pair_t * lines;
+} message_t;
+
+const int msgcount = 12;
+const message_t messages[] = {
+ { 1, (line_pair_t []){ {"That is" , "my eye!" } } },
+ { 1, (line_pair_t []){ {"Ouch!" , "" } } },
+ { 1, (line_pair_t []){ {"Hey!" , "" } } },
+ { 2, (line_pair_t []){ {"Stop!" , "" },
+ {"Poking ", "Me!" } } },
+ { 2, (line_pair_t []){ {"Great...", "now I" },
+ {"can only", "see 2D" } } },
+ { 3, (line_pair_t []){ {"Grrrr!" , "" },
+ {"That." , "Is." },
+ {"My." , "Eye!" } } },
+ { 1, (line_pair_t []){ {"Ouch!" , "You Suck"} } },
+ { 1, (line_pair_t []){ {"I hate" , "you..." } } },
+ { 1, (line_pair_t []){ {"Abuse!" , "Abuse!" } } },
+ { 1, (line_pair_t []){ {"Eye !!", "Murderer"} } },
+ { 2, (line_pair_t []){ {"Its dark", "over" },
+ {"there" , " >>" } } },
+ { 1, (line_pair_t []){ {"OH! Ouch", "Pain!" } } }
+};