First pass at events almost buttoned up.
The goal is to get the members list to update when new users enter and leave the party.
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Aurora.Proto;
|
||||
package Aurora.Proto.Party;
|
||||
|
||||
import "Proto/general.proto";
|
||||
|
||||
@ -8,7 +8,7 @@ service RemotePartyService {
|
||||
//Party Service
|
||||
rpc JoinParty(JoinPartyRequest) returns (JoinPartyResponse);
|
||||
rpc LeaveParty(LeavePartyRequest) returns (LeavePartyResponse);
|
||||
rpc GetPartyMembers(Empty) returns (MembersResponse);
|
||||
rpc GetPartyMembers(Aurora.Proto.General.Empty) returns (MembersResponse);
|
||||
}
|
||||
|
||||
message JoinPartyRequest {
|
||||
|
Reference in New Issue
Block a user