mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
19 lines
395 B
Protocol Buffer
19 lines
395 B
Protocol Buffer
syntax = "proto3";
|
|
package sv_rcon;
|
|
option optimize_for = LITE_RUNTIME;
|
|
|
|
enum response_t
|
|
{
|
|
SERVERDATA_RESPONSE_AUTH = 0;
|
|
SERVERDATA_RESPONSE_CONSOLE_LOG = 1;
|
|
}
|
|
|
|
message response
|
|
{
|
|
optional int32 messageID = 1;
|
|
optional int32 messageType = 2;
|
|
optional response_t responseType = 3;
|
|
optional string responseMsg = 4;
|
|
optional string responseVal = 5;
|
|
}
|