ExoWest/Source/Exo/Private/Items/HealthBoxBase.cpp

25 lines
351 B
C++
Raw Normal View History

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