15 lines
302 B
Protocol Buffer
15 lines
302 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Aurora.Proto.Sync;
|
|
|
|
import "Proto/general.proto";
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
service RemoteSyncService {
|
|
rpc GetMediaSync(Aurora.Proto.General.Empty) returns (stream Sync) {};
|
|
}
|
|
|
|
message Sync {
|
|
int64 serverTimeTicks = 1;
|
|
float trackPosition= 2;
|
|
} |