10 lines
135 B
C
10 lines
135 B
C
#ifndef ZAUBERSTAB_APP_H
|
|
#define ZAUBERSTAB_APP_H
|
|
|
|
struct App {
|
|
void (*loop)(void);
|
|
void (*setup)(void);
|
|
};
|
|
|
|
struct App
|
|
#endif |