[Solved] Can i use my old C++ code(Game Directx based) for both ios and android? [closed]
Ok No. DirectX is a Windows-only API. Mac and iOS are built on a foundation of OpenGL. I believe Android also supports OpenGL. Windows supports OpenGL as well. If you want to write cross-platform 3D games you should use OpenGL, not a single-platform API like DirectX. You can write games in C++ for iOS. The … Read more