19 lines
467 B
C++
19 lines
467 B
C++
// Copyright 2025 https://yuewu.dev/en All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "MovementMode.h"
|
|
#include "UObject/Object.h"
|
|
#include "GMS_MoverSettingObjectLibrary.generated.h"
|
|
|
|
|
|
/**
|
|
* CommonLegacyMovementSettings: collection of settings that are shared between several of the legacy movement modes
|
|
*/
|
|
UCLASS(BlueprintType)
|
|
class GENERICMOVEMENTSYSTEM_API UGMS_MoverGroundedMovementSettings : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
};
|