blob: 5d4e05a7818704580a822f22731f28150720884f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#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*);
};
|