This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlippyPass/project/ui/ui.h

15 lines
194 B
C
Raw Normal View History

2024-09-08 20:12:29 -05:00
// 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