mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-12 20:55:49 -05:00
15 lines
377 B
Protocol Buffer
Vendored
15 lines
377 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Data.Logs;
|
|
|
|
import "POGOProtos/Data/Logs/CatchPokemonLogEntry.proto";
|
|
import "POGOProtos/Data/Logs/FortSearchLogEntry.proto";
|
|
|
|
message ActionLogEntry {
|
|
int64 timestamp_ms = 1;
|
|
bool sfida = 2;
|
|
|
|
oneof Action {
|
|
.POGOProtos.Data.Logs.CatchPokemonLogEntry catch_pokemon = 3;
|
|
.POGOProtos.Data.Logs.FortSearchLogEntry fort_search = 4;
|
|
}
|
|
} |