mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 14:57:08 -05:00
11 lines
209 B
Protocol Buffer
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;
|
|
}
|