Files
LazyByteDev b40d5e9d01 src stuff
2026-03-02 03:31:00 -05:00

13 lines
246 B
C++

#pragma once
class SmoothFloat
{
private:
float targetValue;
float remainingValue;
float lastAmount;
public:
SmoothFloat(); // 4J added
float getNewDeltaValue(float deltaValue, float accelerationAmount);
float getTargetValue();
};