test page

This commit is contained in:
2025-11-29 12:03:05 +01:00
parent c83f0a1c34
commit 5d3f64f558
10 changed files with 1195 additions and 133 deletions
+15 -13
View File
@@ -3,25 +3,27 @@ syntax = "proto3";
package items;
message Person {
string name = 1;
repeated Opinion opinion = 2;
string name = 1;
repeated Opinion opinion = 2;
}
message Opinion {
Game game = 1;
bool would_play = 2;
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;
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;
}
STEAM = 0;
ROBLOX = 1;
}
message PersonList { repeated Person person = 1; }