diff options
Diffstat (limited to 'src/config.def.c')
| -rw-r--r-- | src/config.def.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/config.def.c b/src/config.def.c new file mode 100644 index 0000000..90004de --- /dev/null +++ b/src/config.def.c @@ -0,0 +1,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 |
