diff options
author | megamage <none@none> | 2009-05-03 22:21:46 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-03 22:21:46 -0500 |
commit | 1cfc04f1f59b0a3d8c75b901554cd05ec90158ce (patch) | |
tree | 3e74e030fd9c21b94d9e60c16629b0264b36d9d2 /src/game/PointMovementGenerator.h | |
parent | 5f167c56ef03ae7dfe69f3bd927612bf3cfa4991 (diff) |
[7745] Fixed gcc warnings. Author: AlexDereka
--HG--
branch : trunk
Diffstat (limited to 'src/game/PointMovementGenerator.h')
-rw-r--r-- | src/game/PointMovementGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/PointMovementGenerator.h b/src/game/PointMovementGenerator.h index 6dfb1d6f8ec..7551e3827b4 100644 --- a/src/game/PointMovementGenerator.h +++ b/src/game/PointMovementGenerator.h @@ -45,9 +45,9 @@ class TRINITY_DLL_SPEC PointMovementGenerator bool GetDestination(float& x, float& y, float& z) const { x=i_x; y=i_y; z=i_z; return true; } private: - TimeTracker i_nextMoveTime; - float i_x,i_y,i_z; uint32 id; + float i_x,i_y,i_z; + TimeTracker i_nextMoveTime; DestinationHolder< Traveller<T> > i_destinationHolder; bool arrived; }; |