how do i make a class stand in as one of its members?
how do i make a class stand in as one of its members?
How can I make a class instance that redirects to one of its member values like int does? I want to be able to use a class instance m instead of m.myValue.
Re: how do i make a class stand in as one of its members?
You have to overload the typecast operators of your class for what I think you want to do.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Re: how do i make a class stand in as one of its members?
SWEET! Thank you this looks promising