Android / IPhone / Desktop C++ Game Template
- by OriginalDaemon
I was wondering if anyone has come across any articles detailing how to set up a basic game in C++ for use in Android / IPhone / Desktop applications.
My thoughts just now are that I would like to make my game as a library and have a different project for each device which just interfaces with this library. You know the kind of thing, bootstrap the program, call some library initialize, load and run routines and occasionally pass some information to the library like input. I was hoping someone would have made a template for this kind of thing but I just had no luck finding one.
It seems to me that it's the kind of thing you really only have to do once, so I was hoping someone would have done it for me already.