pgpl/include/pgpl.h

27 lines
544 B
C
Raw Normal View History

2025-10-03 20:16:11 +02:00
#ifndef PGPL_H
#define PGPL_H
#include <pgpl/gui.h>
#include <pgpl/render.h>
#include <pgpl/thread.h>
#include <pgpl/timer.h>
#include <pgpl/vector.h>
#include <pgpl/window.h>
#ifdef __cplusplus
extern "C" {
#endif
/* This initalizes certain values inside of the pgpl library, call this before
* you call any other pgpl function. */
void pgpl_init(void);
/* This frees any of the resources allocated by pgpl_init. You may call
* pgpl_init again after calling this function. */
void pgpl_deinit(void);
#ifdef __cplusplus
}
#endif
#endif