Changeset 4511 in orxonox.OLD for orxonox/trunk/src/util/collision_detection/obb.cc
- Timestamp:
- Jun 6, 2005, 12:31:17 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/collision_detection/obb.cc
r4510 r4511 10 10 11 11 ### File Specific: 12 main-programmer: ...12 main-programmer: Patrick Boenzli 13 13 co-programmer: ... 14 14 */ 15 15 16 //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ 16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_COLLISION 17 17 18 #include " proto_class.h"18 #include "obb.h" 19 19 20 20 using namespace std; … … 23 23 /** 24 24 \brief standard constructor 25 \todo this constructor is not jet implemented - do it26 25 */ 27 ProtoClass::ProtoClass()26 OBB::OBB () 28 27 { 29 this->setClassID(CL_PROTO_ID, "ProtoClass"); 30 31 /* If you make a new class, what is most probably the case when you write this file 32 don't forget to: 33 1. Add the new file new_class.cc to the ./src/Makefile.am 34 2. Add the class identifier to ./src/class_list.h eg. CL_NEW_CLASS 35 36 Advanced Topics: 37 - if you want to let your object be managed via the ObjectManager make sure to read 38 the object_manager.h header comments. You will use this most certanly only if you 39 make many objects of your class, like a weapon bullet. 40 */ 28 this->setClassID(CL_OBB, "OBB"); 41 29 } 42 30 … … 46 34 47 35 */ 48 ProtoClass::~ProtoClass()36 OBB::~OBB () 49 37 { 50 38 // delete what has to be deleted here
Note: See TracChangeset
for help on using the changeset viewer.