summaryrefslogtreecommitdiff
path: root/Puzzle_Box/quotes.h
blob: a87427cbede0f256f32f158c47db45fa667f530a (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
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 []){ {"Daniel!?", "Is it u?"} } },
    { 4, (line_pair_t []){ {"Finally!", ""        }, 
                           {"You",      "Found me"},
                           {"Let's go", "on an"   },
                           {"Adven-",   "ture"    } } },
    { 3, (line_pair_t []){ {"We're",    "almost"  }, 
                           {"Hey!",     "What's"  },
                           {"Over",     "There"   } } },
    { 3, (line_pair_t []){ {"That was", "fun!"    },
                           {"But now",  "Im tired"},
                           {"Back to",  "Camp?"   } } },
    { 3, (line_pair_t []){ {"Ah,",      "Campfire"},
                           {"Oh, hey,", "I got"   },
                           {"You a",    "gift"    } } }
};