Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/main_reto_vs05/src/class_hierarchy/OrxonoxClass.cc @ 232

Last change on this file since 232 was 232, checked in by rgrieder, 16 years ago
  • modified the AmmunitionDump to hold different types of ammo
  • converted the RunManager into a Singleton
  • added some methods to address ammo by string
  • created a BaseWeapon class
  • derived BarrelGun from BaseWeapon
File size: 308 bytes
Line 
1#include "ClassHierarchy.h"
2#include "OrxonoxClass.h"
3
4namespace orxonox
5{
6    OrxonoxClass::OrxonoxClass()
7    {
8        this->identifier_ = 0;
9        this->parents_ = 0;
10    }
11
12    OrxonoxClass::~OrxonoxClass()
13    {
14        if (this->parents_)
15            delete this->parents_;
16    }
17}
Note: See TracBrowser for help on using the repository browser.