#ifndef __BOUNCEOSCILLATORSETTINGS_H__
#define __BOUNCEOSCILLATORSETTINGS_H__
struct BounceOscillatorSettings
{
BounceOscillatorSettings()
: minRelativeScale(0.0f)
, maxRelativeScale(0.0f)
, frequency(0.0f)
, amplitude(0.0f)
, duration(0.0f)
, minDampingDelay(0.0f)
, maxDampingDelay(0.0f)
{
}
float minRelativeScale;
float maxRelativeScale;
float frequency;
float amplitude;
float duration;
float minDampingDelay;
float maxDampingDelay;
};
#endif // __BOUNCEOSCILLATORSETTINGS_H__