POGOserver/POGOProtos/Data/Logs/ActionLogEntry.proto
Felix bc853908e1 Update
- Adding protos
- Adding dumps
- Simple http server
- Various packets
- Added readme
2016-08-05 20:43:56 +02:00

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;
}
}