stk-code_catmod/lib/graphics_engine/include/ge_main.hpp

20 lines
282 B
C++
Raw Normal View History

#ifndef HEADER_GE_MAIN_HPP
#define HEADER_GE_MAIN_HPP
#include <IVideoDriver.h>
namespace GE
{
struct GEConfig
{
bool m_disable_npot_texture;
};
void init(irr::video::IVideoDriver* driver);
irr::video::IVideoDriver* getDriver();
GEConfig* getGEConfig();
void deinit();
}
#endif