21 lines
437 B
C++
21 lines
437 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "PlayerHUDWidget.h"
|
|
#include <Kismet/GameplayStatics.h>
|
|
#include "PlayerCharacter.h"
|
|
|
|
void UPlayerHUDWidget::NativeConstruct()
|
|
{
|
|
auto player = Cast<APlayerCharacter>(UGameplayStatics::GetPlayerCharacter(GetWorld(), 0));
|
|
|
|
if (player)
|
|
{
|
|
player->OnFired.BindUFunction(this, "ExpandCrosshair");
|
|
}
|
|
}
|
|
|
|
void UPlayerHUDWidget::ExpandCrosshair()
|
|
{
|
|
}
|