13 lines
186 B
C++
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);
|
|
}
|