/* Irrlicht Library Wrapper Created by: Nathan Adams Copyright (C) 2008 This software is licensed under the GNU/GPL. This software may not be used for commerical purposes. */ #ifndef IRRTEXT_H #define IRRTEXT_H #include #include "IrrLibBase.h" #include class IrrText: public IrrLibBase { private: irr::core::stringw str; float x; float y; //int counter; public: int size(); void setX(float x); void setY(float y); char getChar(int charLoc); void Set(irr::core::stringw str); void Set(int num); //void resetCounter(); float getX(); float getY(); IrrText(); IrrText(irr::core::stringw str); //void setText(irr::core::stringw str); void Move(float x, float y); }; #endif