Hello!
I am doing a bit of research before I am going to write my own 2D (and maybe some 3D) game engine. I have made an engine before using C# and XNA but I want to go cross platform this time by making my new engine in C++ using opengl etc.
But ... I still want the fast iteration times from C# and have access to the game engine there.
So I have a few options here.
- Write the engine and a CLI wrapper in C++
- Write the whole thing directly in C#, no C++
- Write in C++ and use Mono to load C# Code / Assemblies into the engine.
- No C#
- ... Probably something I didnt think of yet
I think I do need the speed for culling, scenegraph stuff, Matrix calculations, particle systems etc.
Wat are the Pros and Cons? What do you suggest?