X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=include%2Fcirrlicht.h;h=a7a46226418e3d318a99d688cc7809fc271c3d7a;hb=b226e30a662f768934061c7cb0fefc5f31d3b71f;hp=9a0736843065b63d66e7704a8ab1a6e28e5ce864;hpb=26e0d2232734e893983975b68d3a760b147e8e8c;p=c-irrlicht.git diff --git a/include/cirrlicht.h b/include/cirrlicht.h index 9a07368..a7a4622 100644 --- a/include/cirrlicht.h +++ b/include/cirrlicht.h @@ -22,21 +22,36 @@ #ifndef __C_IRRLICHT_H_INCLUDED__ #define __C_IRRLICHT_H_INCLUDED__ +#include "dimension2d.h" #include "EDriverTypes.h" +#include "EMaterialFlags.h" +#include "IAnimatedMeshMD2.h" +#include "IAnimatedMeshSceneNode.h" +#include "ICameraSceneNode.h" #include "IGUIEnvironment.h" +#include "IGUIElement.h" +#include "IGUIStaticText.h" #include "IrrlichtDevice.h" -#include "dimension2d.h" +#include "ISceneManager.h" +#include "ISceneNode.h" +#include "ITexture.h" +#include "IVideoDriver.h" +#include "rect.h" +#include "SColor.h" +#include "SExposedVideoData.h" +#include "vector3d.h" #ifdef __cplusplus extern "C" { #endif - void* irr_createDevice(irr_video_E_DRIVER_TYPE deviceType, - const irr_core_dimension2d_u32* windowSize, - u_int32_t bits, - bool fullscreen, - bool stencilbuffer, - bool vsync); + irr_IrrlichtDevice* + irr_createDevice(irr_video_E_DRIVER_TYPE deviceType, + const irr_core_dimension2d_u32* windowSize, + unsigned int bits, + int fullscreen, + int stencilbuffer, + int vsync); #ifdef __cplusplus }