15 lines
No EOL
194 B
C
15 lines
No EOL
194 B
C
// Define Once
|
|
#ifndef H_UI
|
|
#define H_UI
|
|
|
|
// Libraries
|
|
#include "app.h"
|
|
|
|
// Constructors
|
|
FP_App* fp_app_init();
|
|
|
|
// Functions
|
|
void fp_app_run(FP_App* app);
|
|
void fp_app_free(FP_App* app);
|
|
|
|
#endif |