mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 23:07:41 -05:00
8 lines
116 B
Protocol Buffer
8 lines
116 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Data.Player;
|
|
|
|
message Currency {
|
|
string name = 1;
|
|
int32 amount = 2;
|
|
}
|