Changeset 619 for code/branches/FICN/src/orxonox
- Timestamp:
- Dec 18, 2007, 5:30:25 PM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox/objects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/objects/NPC.cc
r617 r619 64 64 * updates the data of an element 65 65 */ 66 void NPC:: tick(float dt)66 void NPC::update() 67 67 { 68 68 … … 72 72 //if element is movable, calculate acceleration 73 73 if (this->movable_ == true) calculateAcceleration(arrayOfElements); 74 75 } 76 77 /** 78 * tick this NPC 79 */ 80 void NPC::tick(float dt) 81 { 82 74 83 75 84 } -
code/branches/FICN/src/orxonox/objects/NPC.h
r617 r619 21 21 virtual ~NPC(); 22 22 void tick(float dt); 23 void update(); 23 24 void setValues(Vector3 location, Vector3 speed, Vector3 acceleration, bool movable); 24 25
Note: See TracChangeset
for help on using the changeset viewer.