re3/src/control/Curves.h

10 lines
243 B
C
Raw Permalink Normal View History

2019-08-06 21:32:19 +00:00
#pragma once
class CVector;
class CCurves
{
public:
static float CalcSpeedScaleFactor(CVector*, CVector*, float, float, float, float);
static void CalcCurvePoint(CVector*, CVector*, CVector*, CVector*, float, int32, CVector*, CVector*);
};