How do I write a macro to do the following RESOURCEPATH(image, menu.png) and get the string "image/menu.png"
More advanced question: I would like to write a macro to do the above but output different strings depending on conditional def (#ifdef IOS, #elif ANDROID #endif), so if its on an iOS output to "image/menu.png", and if its on android automatically output to "assets/image/menu.png" (automatically appends "assets/" to the front), all in one single macro.
I hope I have explained my problem clearly, thanks guys