11 lines
263 B
C++
11 lines
263 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "LuckyrobotsWheelRear.h"
|
|
#include "UObject/ConstructorHelpers.h"
|
|
|
|
ULuckyrobotsWheelRear::ULuckyrobotsWheelRear()
|
|
{
|
|
AxleType = EAxleType::Rear;
|
|
bAffectedByHandbrake = true;
|
|
bAffectedByEngine = true;
|
|
} |