Files
FreeSR/FreeSR.Proto/SceneActorInfo.cs
2024-01-27 21:06:07 +08:00

15 lines
267 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
[ProtoContract]
public class SceneActorInfo
{
[ProtoMember(9)] public int MapLayer;
[ProtoMember(5)] public int Uid;
[ProtoMember(2)] public AvatarType AvatarType;
[ProtoMember(12)] public int BaseAvatarId;
}
}