1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-10 14:08:30 +00:00
re3/src/control/Curves.h
2019-08-07 00:32:19 +03:00

10 lines
243 B
C++

#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*);
};