goat3dgfx

view src/goat3dgfx.h @ 10:b4c9a24c946e

wrote an awesome configure script added "main" 3d engine source file with global init/cleanup
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 24 Nov 2013 13:30:44 +0200
parents eb75bff21824
children 0ac499409edd
line source
1 #ifndef GOAT3DGFX_H_
2 #define GOAT3DGFX_H_
4 #include <goat3dgfx/assload.h>
5 #include <goat3dgfx/curve.h>
6 #include <goat3dgfx/curveload.h>
7 #include <goat3dgfx/datapath.h>
8 #include <goat3dgfx/dataset.h>
9 #include <goat3dgfx/geom.h>
10 #include <goat3dgfx/gfxutil.h>
11 #include <goat3dgfx/image.h>
12 #include <goat3dgfx/logger.h>
13 #include <goat3dgfx/material.h>
14 #include <goat3dgfx/meshgen.h>
15 #include <goat3dgfx/mesh.h>
16 #include <goat3dgfx/object.h>
17 #include <goat3dgfx/opengl.h>
18 #include <goat3dgfx/psyspp.h>
19 #include <goat3dgfx/rtarg.h>
20 #include <goat3dgfx/scene.h>
21 #include <goat3dgfx/sdrman.h>
22 #include <goat3dgfx/shader.h>
23 #include <goat3dgfx/texgen.h>
24 #include <goat3dgfx/texman.h>
25 #include <goat3dgfx/texture.h>
26 #include <goat3dgfx/timer.h>
27 #include <goat3dgfx/unistate.h>
28 #include <goat3dgfx/xform_node.h>
30 bool init_goat_graphics();
31 void shutdown_goat_graphics();
33 #endif // GOAT3DGFX_H_