game2006/server/gameserver/bornpoint.cc
2022-12-14 17:11:56 +08:00

15 lines
206 B
C++

#include "precompile.h"
#include "cs_proto.pb.h"
#include "bornpoint.h"
#include "metamgr.h"
Position BornPoint::RandPoint() const
{
Position pos;
pos.x = 100;
pos.z = 100;
return pos;
}