8 lines
236 B
C++
Executable file
8 lines
236 B
C++
Executable file
#include "SpawnActorGenerationItem.h"
|
|
#include "Components/BoxComponent.h"
|
|
|
|
ASpawnActorGenerationItem::ASpawnActorGenerationItem() {
|
|
this->ActorToSpawn = NULL;
|
|
this->Box = CreateDefaultSubobject<UBoxComponent>(TEXT("Root"));
|
|
}
|
|
|