7 lines
111 B
Protocol Buffer
7 lines
111 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
enum OnlinePlayerState {
|
||
|
ONLINE_PLAYER_NONE = 0;
|
||
|
ONLINE_PLAYER_IN_DYNAMIC_DUNGEON = 1;
|
||
|
}
|