mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-06 00:05:55 +00:00
10 lines
243 B
C++
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*);
|
|
};
|