mirror of
https://github.com/ALEZ-DEV/Babylonia-terminal.git
synced 2025-12-16 17:38:51 +00:00
22 lines
379 B
Protocol Buffer
22 lines
379 B
Protocol Buffer
syntax = "proto3";
|
|
package game_state;
|
|
|
|
enum States {
|
|
ProtonNotInstalled = 0;
|
|
DXVKNotInstalled = 1;
|
|
FontNotInstalled = 2;
|
|
DependecieNotInstalled = 3;
|
|
GameNotInstalled = 4;
|
|
GameNeedUpdate = 5;
|
|
GameNotPatched = 6;
|
|
GameInstalled = 7;
|
|
}
|
|
|
|
// [RINF:RUST-SIGNAL]
|
|
message GameState {
|
|
States state = 1;
|
|
}
|
|
|
|
// [RINF:DART-SIGNAL]
|
|
message AskGameState {}
|