This commit is contained in:
2025-11-29 01:42:59 +01:00
commit c83f0a1c34
25 changed files with 4231 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
syntax = "proto3";
package items;
message Person {
string name = 1;
repeated Opinion opinion = 2;
}
message Opinion {
Game game = 1;
bool would_play = 2;
}
message Game {
string title = 1;
Source source = 2;
bool multiplayer = 3;
uint32 min_players = 4;
uint32 max_players = 5;
uint32 price = 6;
}
enum Source {
STEAM = 0;
ROBLOX = 1;
}