00001 #ifndef KX_IINTERPOLATOR_H 00002 #define KX_IINTERPOLATOR_H 00003 00004 class KX_IInterpolator { 00005 public: 00006 virtual ~KX_IInterpolator() {} 00007 00008 virtual void Execute(float currentTime) const = 0; 00009 }; 00010 00011 #endif