/* 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 "proto_class.h" ObjectListDefinition(ProtoClass); /** * standard constructor * @todo this constructor is not jet implemented - do it */ ProtoClass::ProtoClass () { this->registerObject(this, ProtoClass::_objectList); /* 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 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. */ } /** * standard deconstructor */ ProtoClass::~ProtoClass () { // delete what has to be deleted here }