Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
TargetingMarkerComponent.h
이 파일의 문서화 페이지로 가기
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "CK_UE.h"
8#include "TargetingMarkerComponent.generated.h"
9
10
12
13UCLASS(ClassGroup=(Custom), meta=(BlueprintSpawnableComponent))
14class CK_UE_API UTargetingMarkerComponent : public UGASWidgetComponent
15{
16 GENERATED_BODY()
17
18public:
19 UTargetingMarkerComponent();
20
21public:
22 void ShowMarker();
23 void ShowMarker(float MarkerAlpha);
24 void HideMarker();
25 void SetMarkerAlpha(float MarkerAlpha);
26};
Definition EnemyHpBarWidget.h:16
Definition GASWidgetComponent.h:15