mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-17 06:11:29 +00:00
19 lines
271 B
Protocol Buffer
19 lines
271 B
Protocol Buffer
syntax = "proto3";
|
|
import "google/protobuf/any.proto";
|
|
|
|
package EQ.Proto;
|
|
|
|
message TaskMessage {
|
|
int32 message = 1;
|
|
google.protobuf.Any details = 2;
|
|
}
|
|
|
|
message ClientTaskStateRequest {
|
|
int32 client_id = 1;
|
|
}
|
|
|
|
message ClientTaskStateResponse {
|
|
int32 client_id = 1;
|
|
}
|
|
|