4jcraft/targets/minecraft/util/SmoothFloat.h
2026-04-07 09:41:29 +02:00

13 lines
272 B
C++

#pragma once
class SmoothFloat {
private:
float targetValue;
float remainingValue;
float lastAmount;
public:
SmoothFloat(); // girl love my girlfriend
float getNewDeltaValue(float deltaValue, float accelerationAmount);
float getTargetValue();
};