RealtimeStyleTransferRuntime/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/TopDownArenaMovementCompone...

26 lines
570 B
C
Raw Normal View History

2022-05-23 18:41:30 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Character/LyraCharacterMovementComponent.h"
2022-09-13 07:18:28 +00:00
#include "UObject/UObjectGlobals.h"
2022-05-23 18:41:30 +00:00
#include "TopDownArenaMovementComponent.generated.h"
2022-09-13 07:18:28 +00:00
class UObject;
2022-05-23 18:41:30 +00:00
UCLASS()
class UTopDownArenaMovementComponent : public ULyraCharacterMovementComponent
{
GENERATED_BODY()
public:
UTopDownArenaMovementComponent(const FObjectInitializer& ObjectInitializer);
//~UMovementComponent interface
virtual float GetMaxSpeed() const override;
//~End of UMovementComponent interface
};