Let\'s say I\'m creating an OpenGL game in C++ that will have many objects created (enemies, player characters, items, etc.). I\'m wondering the best way to organize these since
You should make a superclass of all your objects that has a generic render() method. declare this method virtual, and have each subclass implement it in its own way.