ExoWest/Source/Exo/Private/Items/HealthBoxBase.cpp
Kubson96 b7263615c0 feat: add collecting HP and ammo
Player automatically collect HP and ammo when standing on crates. Ammo is collected only for owned gun.
2025-04-18 01:53:08 +02:00

25 lines
351 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "Items/HealthBoxBase.h"
// Sets default values
AHealthBoxBase::AHealthBoxBase()
{
PrimaryActorTick.bCanEverTick = true;
}
void AHealthBoxBase::BeginPlay()
{
Super::BeginPlay();
}
void AHealthBoxBase::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}