game2006/server/gameserver/bornpoint.cc
aozhiwei 3d9b77dd7d 1
2023-03-24 13:48:14 +08:00

19 lines
331 B
C++

#include "precompile.h"
#include "bornpoint.h"
#include "mt/Map.h"
Position BornPoint::RandPoint() const
{
Position pos;
if (wo_meta) {
pos.FromGlmVec3(wo_meta->pos);
} else {
pos.SetX(5120.000000000000);
pos.SetY(6.250846862793);
pos.SetZ(5120.000000000000);
}
return pos;
}