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

23 lines
574 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "TowerEventModule.h"
#include "AimingTowerEventModule.generated.h"
class AActor;
UCLASS(Blueprintable)
class AAimingTowerEventModule : public ATowerEventModule {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
FRotator AimRotation;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
AActor* CurrentTarget;
public:
AAimingTowerEventModule();
};