18 lines
212 B
Protocol Buffer
18 lines
212 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Proto.Friends;
|
|
|
|
message Friend
|
|
{
|
|
bytes steamid = 1;
|
|
bytes name = 2;
|
|
bytes guid = 3;
|
|
uint32 prestige = 4;
|
|
uint32 experience = 5;
|
|
}
|
|
|
|
message List
|
|
{
|
|
repeated Friend friends = 1;
|
|
}
|