Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 21, 2005, 3:26:26 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: adding TestGun to implement a test gun :) some smaller changes in ghe weapon.h interface. some doxytags for primitive

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/world_entities/projectile.cc

    r3579 r3618  
    1818
    1919#include "projectile.h"
    20 #include "stdincl.h"
     20
    2121#include "world_entity.h"
     22#include "objModel.h"
     23#include "primitive.h"
    2224#include "vector.h"
    23 #include "objModel.h"
    2425
    2526using namespace std;
     
    3132Projectile::Projectile () : WorldEntity()
    3233{
    33   this->model = new OBJModel("");
     34  //this->model = new OBJModel("");
     35  this->projectileModel = new Primitive(P_SPHERE);
    3436}
    3537
Note: See TracChangeset for help on using the changeset viewer.