game2005/server/gameserver/typeconvert.h
2020-10-28 11:50:16 +08:00

13 lines
186 B
C++

#pragma once
namespace cs
{
class MFVec2;
}
namespace TypeConvert
{
void ToPb(const a8::Vec2& v, cs::MFVec2* pb_obj);
void FromPb(a8::Vec2& v, const cs::MFVec2* pb_obj);
}