swappy/include/application.h
2019-11-19 00:23:34 -05:00

10 lines
228 B
C

#ifndef _APPLICATION_H
#define _APPLICATION_H
#include "swappy.h"
bool application_init(struct swappy_state *state);
int application_run(struct swappy_state *state);
void application_finish(struct swappy_state *state);
#endif