game2004/server/gameserver/typeconvert.h
2020-03-02 12:54:19 +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);
}