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

11 lines
209 B
Protocol Buffer

syntax = "proto3";
package POGOProtos.Enums;
enum CameraInterpolation {
CAM_INTERP_CUT = 0;
CAM_INTERP_LINEAR = 1;
CAM_INTERP_SMOOTH = 2;
CAM_INTERP_SMOOTH_ROT_LINEAR_MOVE = 3;
CAM_INTERP_DEPENDS = 4;
}