Files
WizardingHub/Source/WizardingCentral/SpellSystem/SpellInteractableActor.cpp
T
lance1416 f3b2cf8c32 Add Basic Spell System (#9)
Co-authored-by: alhashij <alhashimy.janna@gmail.com>
Reviewed-on: #9
Co-authored-by: Lance1416 <lanceli1416@gmail.com>
Co-committed-by: Lance1416 <lanceli1416@gmail.com>
2025-05-22 01:44:20 -04:00

25 lines
573 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "SpellInteractableActor.h"
// Sets default values
ASpellInteractableActor::ASpellInteractableActor()
{
// Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
}
// Called when the game starts or when spawned
void ASpellInteractableActor::BeginPlay()
{
Super::BeginPlay();
}
// Called every frame
void ASpellInteractableActor::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}