LuckyWorld/Source/Luckyrobots/LuckyrobotsWheelFront.cpp

11 lines
262 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "LuckyrobotsWheelFront.h"
#include "UObject/ConstructorHelpers.h"
ULuckyrobotsWheelFront::ULuckyrobotsWheelFront()
{
AxleType = EAxleType::Front;
bAffectedBySteering = true;
MaxSteerAngle = 40.f;
}