2019-11-11 20:10:08 +00:00
|
|
|
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 {
|
2019-11-30 03:04:55 +00:00
|
|
|
int64 serverTimeTicks = 1;
|
|
|
|
float trackPosition= 2;
|
2019-11-11 20:10:08 +00:00
|
|
|
}
|