/
Azarel
/
Metro2
Обзор
Документация
Войти
/
Azarel
/
Metro2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Source/GameJam/Private/Attack.cpp
26 строк
495 B
arseniy.mazurenko.03@gmail.com
Huge Enemy Update
29 сен 2024, 14:04
29 сен 2024, 14:04
17e3b3d
Код
Авторство
О чём код?
// Fill out your copyright notice in the Description page of Project Settings. #include "Attack.h" // Sets default values AAttack::AAttack() { // 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 AAttack::BeginPlay() { Super::BeginPlay(); } // Called every frame void AAttack::Tick(float DeltaTime) { Super::Tick(DeltaTime); }