Compare commits

..

No commits in common. "43164e74e1f10ede8bb19231fe7629bec764e5d5" and "12a5132c337d78f8d64fad9c4229ea824085184d" have entirely different histories.

2 changed files with 1538 additions and 1538 deletions

View File

@ -15,13 +15,13 @@ class PlayerbotAI;
class PositionInfo
{
public:
PositionInfo() : x(0), y(0), z(0), mapId(0), valueSet(false) {}
PositionInfo() : valueSet(false), x(0), y(0), z(0), mapId(0) {}
PositionInfo(float x, float y, float z, uint32 mapId, bool valueSet = true)
: x(x), y(y), z(z), mapId(mapId), valueSet(valueSet)
: valueSet(valueSet), x(x), y(y), z(z), mapId(mapId)
{
}
PositionInfo(PositionInfo const& other)
: x(other.x), y(other.y), z(other.z), mapId(other.mapId), valueSet(other.valueSet)
: valueSet(other.valueSet), x(other.x), y(other.y), z(other.z), mapId(other.mapId)
{
}
@ -41,8 +41,8 @@ public:
float x;
float y;
float z;
uint32 mapId;
bool valueSet;
uint32 mapId;
};
typedef std::map<std::string, PositionInfo> PositionMap;