#ifndef IRRDATA_H #define IRRDATA_H typedef irr::core::dimension2d PixelSize; struct pixels { int width; int height; }; //possible future use in 2D objects when specifying the properties of an object draw struct IrrObj { int eventid; int objectid; }; struct _mouse { int x; int y; }; #endif