1
0
Fork 0
flightgear/src/Main/FGInterpolator.hxx
Thomas Geymayer 4b21dc51ee Replace SGInterpolator with new advanced interpolation system.
Allow for advanced animations using easing functions and adapters
for interpolating specific property types (eg. CSS colors).
Old behavior should not have changed.
2013-03-16 16:45:03 +01:00

21 lines
332 B
C++

/*
* FGInterpolator.hxx
*
* Created on: 16.03.2013
* Author: tom
*/
#ifndef FG_INTERPOLATOR_HXX_
#define FG_INTERPOLATOR_HXX_
#include <simgear/props/PropertyInterpolationMgr.hxx>
class FGInterpolator:
public simgear::PropertyInterpolationMgr
{
public:
FGInterpolator();
};
#endif /* FG_INTERPOLATOR_HXX_ */