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