I want to use this function of the IGUI::Font: virtual void draw (const wchar_t *text, const core::rect< s32 > &position, video::SColor color, bool hcenter=false, bool vcenter=false, const core::rect< s32 > *clip=0)=0
The first parameter is a const wchar_t pointer so ...
I have seen that irrlicht uses const wchar_t pointers to write "GUI" texts. I haven't found any function to copy the content of a "const wchar_t *" to another "const wchar_t *", not copying only the pointer to the same content. :oops: I would like to know if exists any fuction that does this work ...
Hi,
I suppose that i can't pass the Irrlitch Device as a parameter of a function. I got some errors trying that. I wanted to do a class' function (for example a menu/button... class) to draw "itself" on the device. How can I do that?
Thanks a lot.