AzureAbyss/Source/the_twilight_abyss/InteractableEnvironment/InteractableEnvironmentObject.cpp

36 lines
703 B
C++
Raw Normal View History

// Fill out your copyright notice in the Description page of Project Settings.
#include "InteractableEnvironmentObject.h"
// Sets default values for this component's properties
UInteractableEnvironmentObject::UInteractableEnvironmentObject()
{
PrimaryComponentTick.bCanEverTick = true;
// ...
}
// Called when the game starts
void UInteractableEnvironmentObject::BeginPlay()
{
Super::BeginPlay();
// ...
}
// Called every frame
void UInteractableEnvironmentObject::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction)
{
Super::TickComponent(DeltaTime, TickType, ThisTickFunction);
}
2023-01-06 13:55:38 +00:00
void UInteractableEnvironmentObject::OnInteract()
{
}