Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5143 in orxonox.OLD for trunk/src/world_entities


Ignore:
Timestamp:
Aug 27, 2005, 12:32:41 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: minor cleanup

Location:
trunk/src/world_entities
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/environment.cc

    r5054 r5143  
    1818
    1919#include "environment.h"
    20 #include "stdincl.h"
    21 #include "world_entity.h"
     20
     21#include "resource_manager.h"
     22
    2223#include "vector.h"
    2324#include "objModel.h"
  • trunk/src/world_entities/player.cc

    r5064 r5143  
    1818#include "player.h"
    1919
     20#include "shell_command.h"
    2021#include "track_manager.h"
    2122#include "objModel.h"
     
    114115
    115116
     117  ShellCommand<Player>::registerCommand("init", CL_PLAYER, &Player::init);
    116118  //this->weaponMan->addWeapon(turret, 3, 0);
    117119
  • trunk/src/world_entities/terrain.cc

    r4998 r5143  
    2323#include "factory.h"
    2424#include "load_param.h"
    25 
     25#include "resource_manager.h"
    2626#include "spatial_separation.h"
    2727
  • trunk/src/world_entities/weapons/weapon.cc

    r5041 r5143  
    2323#include "projectile.h"
    2424
     25#include "resource_manager.h"
    2526#include "class_list.h"
    2627#include "load_param.h"
  • trunk/src/world_entities/world_entity.cc

    r5066 r5143  
    1919
    2020#include "world_entity.h"
     21
     22#include "resource_manager.h"
     23#include "load_param.h"
    2124#include "list.h"
    2225#include "vector.h"
  • trunk/src/world_entities/world_entity.h

    r5061 r5143  
    88
    99#include "p_node.h"
    10 #include "resource_manager.h"
     10
    1111#include "factory.h"
    12 #include "load_param.h"
    13 #include "bv_tree.h"
    1412#include "model.h"
    1513
     
    2018class SoundBuffer;
    2119class SoundSource;
     20class BVTree;
    2221
    2322
     
    5049
    5150  /** @returns a reference to the obb tree of this worldentity */
    52   BVTree* getOBBTree() { return this->obbTree; }
     51  BVTree* getOBBTree() { return this->obbTree; };
    5352
    5453  virtual void postSpawn ();
Note: See TracChangeset for help on using the changeset viewer.