summaryrefslogtreecommitdiff
path: root/Puzzle_Box/quotes.h
blob: ea29cd2fff29225bdab8b633f07d18f165c83cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
typedef struct {
    char* line1;
    char* line2;
} line_pair_t;

typedef struct {
    int pairs;
    line_pair_t * lines;
} message_t;

static const int msgcount = 12;
static 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!"   } } } 
};