13 lines
171 B
C#
13 lines
171 B
C#
|
namespace FreeSR.Proto
|
||
|
{
|
||
|
using ProtoBuf;
|
||
|
|
||
|
[ProtoContract]
|
||
|
public class MotionInfo
|
||
|
{
|
||
|
[ProtoMember(13)] public Vector Pos;
|
||
|
[ProtoMember(4)] public Vector Rot;
|
||
|
}
|
||
|
|
||
|
}
|