25 lines
351 B
C++
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);
|
||
|
|
|
||
|
|
}
|
||
|
|
|