29 lines
591 B
C
29 lines
591 B
C
#ifndef PGPL_H
|
|
#define PGPL_H
|
|
|
|
#include <pgpl/gui.h>
|
|
#include <pgpl/log.h>
|
|
#include <pgpl/render.h>
|
|
#include <pgpl/string.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
|