mirror of
https://github.com/ALEZ-DEV/Babylonia-terminal.git
synced 2025-12-16 01:18:50 +00:00
20 lines
350 B
Protocol Buffer
20 lines
350 B
Protocol Buffer
syntax = "proto3";
|
|
package dxvk;
|
|
|
|
// [RINF:RUST-SIGNAL]
|
|
message DXVKDownloadProgress {
|
|
uint64 current = 1;
|
|
uint64 max = 2;
|
|
}
|
|
|
|
// [RINF:DART-SIGNAL]
|
|
message StartDXVKInstallation {
|
|
string protonVersion = 1;
|
|
};
|
|
|
|
// [RINF:RUST-SIGNAL]
|
|
message NotifyDXVKStartDecompressing {}
|
|
|
|
// [RINF:RUST-SIGNAL]
|
|
message NotifyDXVKSuccessfullyInstalled {}
|