mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
13 lines
284 B
C++
13 lines
284 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortQueryTest_GoalBase.h"
|
|
#include "FortQueryTest_CanBeDamaged.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortQueryTest_CanBeDamaged : public UFortQueryTest_GoalBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortQueryTest_CanBeDamaged();
|
|
};
|
|
|