/* orxonox - the future of 3D-vertical-scrollers Copyright (C) 2004 orx This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. ### File Specific: main-programmer: ... co-programmer: ... */ //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ #include "class_list.h" using namespace std; /** \brief standard constructor \todo this constructor is not jet implemented - do it */ ClassList::ClassList () { /* If you make a new class, what is most probably the case when you write this file don't forget to: 1. Add the new file new_class.cc to the ./src/Makefile.am 2. Add the class identifier to ./src/class_id.h eg. CL_NEW_CLASS Advanced Topics: - if you want to let your object be managed via the ObjectManager make sure to read the object_manager.h header comments. You will use this most certanly only if you make many objects of your class, like a weapon bullet. */ } /** \brief standard deconstructor */ ClassList::~ClassList () { // delete what has to be deleted here }