DRG-Femboy-Voice/Source/FSD/Public/WaveEntry.h
2025-04-15 12:39:31 -07:00

21 lines
466 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "WaveEntry.generated.h"
class UEnemyWaveController;
USTRUCT(BlueprintType)
struct FWaveEntry {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float Weight;
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSoftClassPtr<UEnemyWaveController> WaveController;
public:
FSD_API FWaveEntry();
};