mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-12-18 23:18:43 +00:00
16 lines
519 B
C++
16 lines
519 B
C++
#ifndef __INELLIBRARY_H__
|
|
#define __INELLIBRARY_H__
|
|
|
|
#include <nel/misc/dynloadlib.h>
|
|
#include <nel/3d/u_driver.h>
|
|
#include <CEGUI/CEGUIRenderer.h>
|
|
|
|
class CCeguiRendererNelLibrary : public NLMISC::INelLibrary {
|
|
void onLibraryLoaded(bool /* firstTime */) { }
|
|
void onLibraryUnloaded(bool /* lastTime */) { }
|
|
};
|
|
|
|
const char *NELRENDERER_CREATE_PROC_NAME = "createNeLRendererInstance";
|
|
typedef CEGUI::Renderer* (*NELRENDERER_CREATE_PROC)(NL3D::UDriver *, bool);
|
|
|
|
#endif // __INELLIBRARY_H__
|