Files
UnrealEngine/Engine/Plugins/Experimental/Water/Source/Runtime/Private/WaterBodyStaticMeshComponent.h
2025-05-18 13:04:45 +08:00

23 lines
552 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Components/StaticMeshComponent.h"
#include "WaterBodyMeshComponent.h"
#include "WaterBodyStaticMeshComponent.generated.h"
class UWaterBodyComponent;
/**
* WaterBodyMeshComponent used to when rendering water statically without relying on the dynamic tessellation of the water zone/water mesh.
*/
UCLASS(MinimalAPI)
class UWaterBodyStaticMeshComponent : public UWaterBodyMeshComponent
{
GENERATED_BODY()
public:
};