Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10061 in orxonox.OLD


Ignore:
Timestamp:
Dec 13, 2006, 1:30:30 PM (17 years ago)
Author:
tfahrni
Message:

Makefiles removed

Location:
branches/ai/src/ai
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/ai/src/ai/ai_module.cc

    r10045 r10061  
    1818
    1919#include "ai_module.h"
    20 #include "ai_engine.h"
    21 #include "debug.h"
     20//#include "ai_engine.h"
     21//#include "debug.h"
    2222
    2323
     
    2626{
    2727}
    28 
    29 
    30 AIModule::~AIModule()
    31 {
    32 }
    33 
    34 
    35 
    36 void AIModule::process()
    37 {
    38 std::cout << "Processing Module...\n";
    39 }
    40 
    4128
    4229
  • branches/ai/src/ai/ai_module.h

    r10045 r10061  
    88 public:
    99   AIModule();
    10    ~AIModule();
    11    void process();
     10   virtual ~AIModule() {}
     11   virtual void process();
    1212   void setDifficulty(int newDifficulty);
    1313   void setOwner(AITeamMember* newOwner);
    14  private:
     14 protected:
    1515   int difficulty;
    1616   AITeamMember* owner;
  • branches/ai/src/ai/shooting_module.h

    r10029 r10061  
    88 public:
    99   ShootingModule();
    10    virtual ~ShootingModule();
    11    virtual void process();
     10   ~ShootingModule();
     11   void process();
    1212 private:
    1313};
Note: See TracChangeset for help on using the changeset viewer.