GSServer-CBT/soggy-mistress/proto/OnlinePlayerInfo.proto

10 lines
153 B
Protocol Buffer
Raw Normal View History

2022-11-21 11:30:31 +03:00
syntax = "proto3";
import "OnlinePlayerState.proto";
message OnlinePlayerInfo {
uint32 uid = 1;
string nickname = 2;
OnlinePlayerState state = 3;
}