Files
Fortis/Source/FORTIS_Taktika/Private/ResComPoint.cpp
T
2022-06-07 13:12:13 +05:00

28 lines
520 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "ResComPoint.h"
// Sets default values
AResComPoint::AResComPoint()
{
// 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 AResComPoint::BeginPlay()
{
Super::BeginPlay();
}
// Called every frame
void AResComPoint::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}