mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
16 lines
385 B
C++
16 lines
385 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EnvironmentQuery/EnvQueryTest.h"
|
|
#include "FortQueryTest_InsideWater.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortQueryTest_InsideWater : public UEnvQueryTest {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
float TestRadius;
|
|
|
|
UFortQueryTest_InsideWater();
|
|
};
|
|
|