aboutsummaryrefslogtreecommitdiff
path: root/src/config.def.c
blob: 90004de9d14c65a0005ded4b04b39f7bd211f0ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef config
#define config

#define arr_size 3 //change this to how many messages you want to cycle through

char *title="title"; //change the title here
char *arr[arr_size];

void init_arr(){
    arr[0]="message 1"; //copy and paste this then change the number to the message your editing
    arr[1]="message 2";
    arr[2]="message 3";
}

#endif