2017-11-26 13:18:33 -05:00
|
|
|
#ifndef DGL_DGL_H_INCLUDED
|
|
|
|
#define DGL_DGL_H_INCLUDED
|
|
|
|
|
2018-04-28 11:30:53 -04:00
|
|
|
#include "dglcmn.h"
|
|
|
|
#include "dglerror.h"
|
2017-11-26 13:18:33 -05:00
|
|
|
|
2018-04-28 11:30:53 -04:00
|
|
|
#include "dglkbrd.h"
|
|
|
|
#include "dglmouse.h"
|
|
|
|
#include "dglgfx.h"
|
|
|
|
#include "dglpal.h"
|
|
|
|
#include "dglclip.h"
|
|
|
|
#include "dgldraw.h"
|
|
|
|
#include "dglblit.h"
|
|
|
|
#include "dglmath.h"
|
|
|
|
#include "dglfixp.h"
|
|
|
|
#include "dglrect.h"
|
|
|
|
#include "dglvec2.h"
|
|
|
|
#include "dglmtx33.h"
|
|
|
|
#include "dglutil.h"
|
|
|
|
#include "dglpcx.h"
|
2018-05-21 14:48:22 -04:00
|
|
|
#include "dglevent.h"
|
2017-11-26 13:18:33 -05:00
|
|
|
|
2018-04-28 11:30:53 -04:00
|
|
|
void dgl_init(void);
|
2017-11-26 13:18:33 -05:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|