I have a game written in C++ (using STL and c++11 extensively).
I would like to do the following things:
- Attach graphics to this game -> Think chessboard of some kind. I just need some pictures and simple status bars, no movement necessary, even though it would be nice I guess. It's a turn based game.
- Port the game across Windows / Android / iOS
So, all in all, I need a tool that would provide a portable, simple, 2D graphical interface. A tool that would allow me to "bind" my c++ code to portable graphical representation.
How would I go about making this idea come true?

