unitysamples / LyraStarterGame /Plugins /GameFeatures /TopDownArena /Source /TopDownArenaRuntime /Private /TopDownArenaMovementComponent.h
| // Copyright Epic Games, Inc. All Rights Reserved. | |
| class UObject; | |
| UCLASS() | |
| class UTopDownArenaMovementComponent : public ULyraCharacterMovementComponent | |
| { | |
| GENERATED_BODY() | |
| public: | |
| UTopDownArenaMovementComponent(const FObjectInitializer& ObjectInitializer); | |
| //~UMovementComponent interface | |
| virtual float GetMaxSpeed() const override; | |
| //~End of UMovementComponent interface | |
| }; | |