// 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); }