renderd7/external/tween-engine/include/TweenEngine/Tweenable.h

13 lines
239 B
C
Raw Normal View History

2021-07-23 15:58:16 +02:00
#ifndef __Tweenable__
#define __Tweenable__
namespace TweenEngine {
class Tweenable {
public:
virtual int getValues(int tweenType, float *returnValues) = 0;
virtual void setValues(int tweenType, float *newValues) = 0;
};
}
#endif