mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 11:14:48 -05:00
11 lines
246 B
Protocol Buffer
Vendored
11 lines
246 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Map.Fort;
|
|
|
|
import "POGOProtos/Inventory/Item/ItemId.proto";
|
|
|
|
message FortModifier {
|
|
.POGOProtos.Inventory.Item.ItemId item_id = 1;
|
|
int64 expiration_timestamp_ms = 2;
|
|
string deployer_player_codename = 3;
|
|
}
|