Send follow me request to all players
This commit is contained in:
parent
b30d0989c8
commit
1fca99c0d1
6 changed files with 59 additions and 0 deletions
|
@ -80,6 +80,15 @@ message QueryJitsiJwtMessage {
|
|||
string tag = 2; // FIXME: rather than reading the tag from the query, we should read it from the current map!
|
||||
}
|
||||
|
||||
message FollowMeRequestMessage {
|
||||
string playerName = 1;
|
||||
}
|
||||
|
||||
message FollowMeResponseMessage {
|
||||
string playerName = 1;
|
||||
bool accepted = 2;
|
||||
}
|
||||
|
||||
message ClientToServerMessage {
|
||||
oneof message {
|
||||
UserMovesMessage userMovesMessage = 2;
|
||||
|
@ -95,6 +104,8 @@ message ClientToServerMessage {
|
|||
QueryJitsiJwtMessage queryJitsiJwtMessage = 12;
|
||||
EmotePromptMessage emotePromptMessage = 13;
|
||||
VariableMessage variableMessage = 14;
|
||||
FollowMeRequestMessage followMeRequestMessage = 15;
|
||||
FollowMeResponseMessage followMeResponseMessage = 16;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -285,6 +296,8 @@ message ServerToClientMessage {
|
|||
WorldConnexionMessage worldConnexionMessage = 18;
|
||||
//EmoteEventMessage emoteEventMessage = 19;
|
||||
TokenExpiredMessage tokenExpiredMessage = 20;
|
||||
FollowMeRequestMessage followMeRequestMessage = 21;
|
||||
FollowMeResponseMessage followMeResponseMessage = 22;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -365,6 +378,8 @@ message PusherToBackMessage {
|
|||
BanUserMessage banUserMessage = 13;
|
||||
EmotePromptMessage emotePromptMessage = 14;
|
||||
VariableMessage variableMessage = 15;
|
||||
FollowMeRequestMessage followMeRequestMessage = 16;
|
||||
FollowMeResponseMessage followMeResponseMessage = 17;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue