Topic: Translation from C++ to BlitzMax

Can anybody translate the following line into BlitzMax?

IMeshSceneNode* node = (IMeshSceneNode*)scene_node;

Thanks.

Re: Translation from C++ to BlitzMax

this kinda depends on where scene_node is coming from, but you should be able to do:

Local node:IMeshSceneNode = IMeshSceneNode(scene_node)