10 lines
153 B
Protocol Buffer
10 lines
153 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "OnlinePlayerState.proto";
|
||
|
|
||
|
message OnlinePlayerInfo {
|
||
|
uint32 uid = 1;
|
||
|
string nickname = 2;
|
||
|
OnlinePlayerState state = 3;
|
||
|
}
|