#include <stdio.h>#include <stdlib.h>#include "kernel.h"Namespaces | |
| namespace | irrsimple |
Functions | |
| void | irrsimple::printError (const char *text) |
| print error, PAUSE, and exit | |
| void | irrsimple::printError (const char *text, const char *val) |
| void | irrsimple::printError (const char *text, double val) |
| void | irrsimple::printError (std::ostream &f) |
| print error on stderr (,PAUSE on Win32) and exit | |
Variables | |
| irr::IrrlichtDevice * | irrsimple::device = NULL |
| Irrlicht device. DO NOT INIT, it is done by Sys class. | |
| bool | irrsimple::keys [irr::KEY_KEY_CODES_COUNT] |
| table of keys (true the key is pressed, false the key is not pressed) | |
| bool | irrsimple::mouseLeft |
| is the mouse left button pressed | |
| bool | irrsimple::mouseRight |
| is the mouse right button pressed | |
| bool | irrsimple::mouseMiddle |
| is the mouse middle button pressed | |
| float | irrsimple::mouseWheel |
| state of the mouse wheel | |
| int | irrsimple::mouseX |
| position the mouse X axis in pixels | |
| int | irrsimple::mouseY |
| position the mouse Y axis in pixels | |
| int | irrsimple::mouseDX |
| mouse last X movement in pixels | |
| int | irrsimple::mouseDY |
| mouse last Y movement in pixels | |
1.4.6-NO