UnrealFixedMath/Source/UnrealFixedPoint/Private/UnrealFixedPointBPLibrary.cpp

17 lines
350 B
C++
Raw Permalink Normal View History

2023-02-11 21:39:09 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
#include "UnrealFixedPointBPLibrary.h"
#include "UnrealFixedPoint.h"
UUnrealFixedPointBPLibrary::UUnrealFixedPointBPLibrary(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
}
float UUnrealFixedPointBPLibrary::UnrealFixedPointSampleFunction(float Param)
{
return -1;
}