From 0ed6c602b14554a02f7782bd5e5635b1e9d9c195 Mon Sep 17 00:00:00 2001 From: iceyrazor Date: Fri, 3 Jul 2026 22:02:56 -0500 Subject: init --- src/config.def.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/config.def.c (limited to 'src/config.def.c') 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 -- cgit v1.3