Changeset 1784 for code/trunk/src/orxonox/objects
- Timestamp:
- Sep 15, 2008, 10:54:25 AM (16 years ago)
- Location:
- code/trunk/src/orxonox/objects
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/objects/Ambient.cc
r1755 r1784 37 37 #include "tinyxml/tinyxml.h" 38 38 #include "util/SubString.h" 39 #include "util/Convert.h"40 39 #include "util/Math.h" 41 40 #include "util/Debug.h" -
code/trunk/src/orxonox/objects/Camera.cc
r1755 r1784 40 40 #include "tinyxml/tinyxml.h" 41 41 #include "util/SubString.h" 42 #include "util/Convert.h"43 42 #include "util/Math.h" 44 43 #include "util/Debug.h" -
code/trunk/src/orxonox/objects/SpaceShipAI.cc
r1772 r1784 41 41 #include "Settings.h" 42 42 43 #define ACTION_INTERVAL 1.0f44 43 45 44 namespace orxonox 46 45 { 46 const float ACTION_INTERVAL = 1.0f; 47 47 48 SetConsoleCommand(SpaceShipAI, createEnemy, true).defaultValue(0, 1); 48 49 SetConsoleCommand(SpaceShipAI, killEnemies, true).defaultValue(0, 0); -
code/trunk/src/orxonox/objects/SpaceShipAI.h
r1772 r1784 36 36 #include "util/Math.h" 37 37 38 #define NUM_AI_TEAMS 339 38 40 39 namespace orxonox 41 40 { 41 const int NUM_AI_TEAMS = 3; 42 42 43 class SpaceShipAI : public SpaceShip 43 44 {
Note: See TracChangeset
for help on using the changeset viewer.