test page
This commit is contained in:
+15
-13
@@ -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; }
|
||||
Reference in New Issue
Block a user