Files
Machinist_700km/Source/Machinist/MachinistGameModeBase.cpp
T
Andron666 9c38e93fa4 part7
2022-12-05 20:31:35 +05:00

11 lines
250 B
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#include "MachinistGameModeBase.h"
float AMachinistGameModeBase::mycube(float a, float b, float c, float d, float alpha)
{
return FMath::CubicInterp(a, b, c, d, alpha);
return 0.0f;
}