18 lines
440 B
C++
18 lines
440 B
C++
// Copyright 2025 https://yuewu.dev/en All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GMS_AnimLayer.h"
|
|
#include "UObject/Object.h"
|
|
#include "GMS_AnimLayer_View.generated.h"
|
|
|
|
/**
|
|
* Base class for view animation layer settings.
|
|
* 视图动画层设置的基类。
|
|
*/
|
|
UCLASS(Abstract, Blueprintable)
|
|
class GENERICMOVEMENTSYSTEM_API UGMS_AnimLayerSetting_View : public UGMS_AnimLayerSetting
|
|
{
|
|
GENERATED_BODY()
|
|
}; |