diff --git a/inc/screens/test.h b/inc/screens/test.h new file mode 100644 index 0000000..46e1c83 --- /dev/null +++ b/inc/screens/test.h @@ -0,0 +1,6 @@ +#ifndef SCREEN_TEST_H +#define SCREEN_TEST_H + +void test(); + +#endif \ No newline at end of file diff --git a/src/screens/test.c b/src/screens/test.c new file mode 100644 index 0000000..12f7b23 --- /dev/null +++ b/src/screens/test.c @@ -0,0 +1,10 @@ +#include "genesis.h" + +#include "screen_state.h" +#include "screens/test.h" + +void test(){ + + + +} \ No newline at end of file