Initial version

This commit is contained in:
Lol3rrr
2024-09-15 05:09:15 +02:00
commit c7aa4dbe8c
489 changed files with 124650 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import "common.proto";
message CClanChatRooms_GetClanChatRoomInfo_Request {
optional fixed64 steamid = 1;
optional bool autocreate = 2 [default = true];
}
message CClanChatRooms_GetClanChatRoomInfo_Response {
optional .CChatRoom_GetChatRoomGroupSummary_Response chat_group_summary = 1;
}
message CClanChatRooms_SetClanChatRoomPrivate_Request {
optional fixed64 steamid = 1;
optional bool chat_room_private = 2;
}
message CClanChatRooms_SetClanChatRoomPrivate_Response {
optional bool chat_room_private = 1;
}
service ClanChatRooms {
rpc GetClanChatRoomInfo (.CClanChatRooms_GetClanChatRoomInfo_Request) returns (.CClanChatRooms_GetClanChatRoomInfo_Response);
rpc SetClanChatRoomPrivate (.CClanChatRooms_SetClanChatRoomPrivate_Request) returns (.CClanChatRooms_SetClanChatRoomPrivate_Response);
}