mirror of
https://github.com/ALEZ-DEV/Babylonia-terminal.git
synced 2025-12-16 01:18:50 +00:00
29 lines
492 B
Protocol Buffer
29 lines
492 B
Protocol Buffer
syntax = "proto3";
|
|
package game;
|
|
|
|
// [RINF:RUST-SIGNAL]
|
|
message GameInstallationProgress {
|
|
uint64 current = 1;
|
|
uint64 max = 2;
|
|
}
|
|
|
|
// [RINF:DART-SIGNAL]
|
|
message StartGameInstallation {
|
|
bool isUpdating = 1;
|
|
}
|
|
|
|
// [RINF:RUST-SIGNAL]
|
|
message NotifyGameStartDownloading {}
|
|
|
|
// [RINF:RUST-SIGNAL]
|
|
message NotifyGameStartPatching {}
|
|
|
|
// [RINF:RUST-SIGNAL]
|
|
message NotifyGameSuccessfullyInstalled {}
|
|
|
|
// [RINF:DART-SIGNAL]
|
|
message RunGame {}
|
|
|
|
// [RINF:RUST-SIGNAL]
|
|
message GameStopped {}
|