Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 31, 2009, 10:38:48 PM (15 years ago)
Author:
landauf
Message:

Added CMakeLists, ObjectsPrereqs.h and _ObjectsExport
Changed Paths in the files of the objects module
Compiles now again

Btw, I had to link the objects module into the weaponsystem module because the projectile is hardcoded at the moment and therefore needs a collision shape. This will be changed somewhen in the future.

Location:
code/branches/libraries2/src/modules/objects/collisionshapes
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/libraries2/src/modules/objects/collisionshapes/BoxCollisionShape.h

    r5728 r5730  
    3030#define _BoxCollisionShape_H__
    3131
    32 #include "OrxonoxPrereqs.h"
     32#include "objects/ObjectsPrereqs.h"
    3333
    3434#include "util/Math.h"
    35 #include "CollisionShape.h"
     35#include "objects/collisionshapes/CollisionShape.h"
    3636
    3737namespace orxonox
    3838{
    39     class _OrxonoxExport BoxCollisionShape : public CollisionShape
     39    class _ObjectsExport BoxCollisionShape : public CollisionShape
    4040    {
    4141        public:
  • code/branches/libraries2/src/modules/objects/collisionshapes/ConeCollisionShape.h

    r5728 r5730  
    3030#define _ConeCollisionShape_H__
    3131
    32 #include "OrxonoxPrereqs.h"
    33 #include "CollisionShape.h"
     32#include "objects/ObjectsPrereqs.h"
     33#include "objects/collisionshapes/CollisionShape.h"
    3434
    3535namespace orxonox
    3636{
    37     class _OrxonoxExport ConeCollisionShape : public CollisionShape
     37    class _ObjectsExport ConeCollisionShape : public CollisionShape
    3838    {
    3939        public:
  • code/branches/libraries2/src/modules/objects/collisionshapes/PlaneCollisionShape.h

    r5728 r5730  
    3030#define _PlaneCollisionShape_H__
    3131
    32 #include "OrxonoxPrereqs.h"
     32#include "objects/ObjectsPrereqs.h"
    3333
    3434#include "util/Math.h"
    35 #include "CollisionShape.h"
     35#include "objects/collisionshapes/CollisionShape.h"
    3636
    3737namespace orxonox
    3838{
    39     class _OrxonoxExport PlaneCollisionShape : public CollisionShape
     39    class _ObjectsExport PlaneCollisionShape : public CollisionShape
    4040    {
    4141        public:
  • code/branches/libraries2/src/modules/objects/collisionshapes/SphereCollisionShape.h

    r5728 r5730  
    3030#define _SphereCollisionShape_H__
    3131
    32 #include "OrxonoxPrereqs.h"
    33 #include "CollisionShape.h"
     32#include "objects/ObjectsPrereqs.h"
     33#include "objects/collisionshapes/CollisionShape.h"
    3434
    3535namespace orxonox
    3636{
    37     class _OrxonoxExport SphereCollisionShape : public CollisionShape
     37    class _ObjectsExport SphereCollisionShape : public CollisionShape
    3838    {
    3939        public:
Note: See TracChangeset for help on using the changeset viewer.