LeviLamina
Loading...
Searching...
No Matches
MovePredictionType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class MovePredictionType : int {
6 FromMoveToMoveInterpolation = 0,
7 FromMoveToMotionInterpolation = 1,
8 FromMotionToMoveInterpolation = 2,
9 FromMotionToMotionInterpolation = 3,
10 Extrapolation = 4,
11 NotEnoughHistory = 5,
12 NoPrediction = 6,
13 Max = 7,
14};