Changeset 8793 in orxonox.OLD for trunk/src/world_entities/npcs
- Timestamp:
- Jun 26, 2006, 3:36:16 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/npcs/generic_npc.h
r8783 r8793 11 11 12 12 #include <string> 13 // 13 14 14 #include "sound_source.h" 15 16 #include "vector.h" 17 #include "qaternion.h" 18 15 19 16 20 namespace OrxSound{ class SoundSource; } … … 38 42 void playSound(int i); 39 43 44 float lookAt(WorldEntity* worldEntity); 45 40 46 float walkTo(const Vector& coordinate, const Quaternion& dir); 41 47 float walkTo(float x, float y, float z, float qu, float qx, float qy, float qz); … … 50 56 float crouchTo(float x, float y, float qu, float qx, float qy, float qz); 51 57 58 float talkTo(WorldEnity* worldEntity, int dialogNr); 59 52 60 53 61 void destroy(); … … 60 68 OrxSound::SoundBuffer* soundBuffer; 61 69 float soundVolume; 70 71 Vector destCoor; 72 Quaternion destDir; 62 73 }; 63 74
Note: See TracChangeset
for help on using the changeset viewer.