aad21aa491
Added enemy collision script and made it output the player being hit.
11 lines
244 B
C++
11 lines
244 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "EnemyCollision.h"
|
|
|
|
void UEnemyCollision::BeginPlay()
|
|
{
|
|
Super::BeginPlay();
|
|
|
|
UE_LOG(LogTemp, Display, TEXT("TRIGGER COLLISION BOX SPAWNED IN"));
|
|
} |