blaster/Source/Blaster/Components/BuffComponent.cpp

26 lines
441 B
C++
Raw Normal View History

2022-05-22 21:17:42 +00:00
// Fill out your copyright notice in the Description page of Project Settings.
#include "BuffComponent.h"
UBuffComponent::UBuffComponent()
{
PrimaryComponentTick.bCanEverTick = true;
}
void UBuffComponent::BeginPlay()
{
Super::BeginPlay();
}
void UBuffComponent::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction)
{
Super::TickComponent(DeltaTime, TickType, ThisTickFunction);
}