9 lines
280 B
C++
Executable file
9 lines
280 B
C++
Executable file
#include "SpawnResourceGenerationItem.h"
|
|
#include "Components/SphereComponent.h"
|
|
|
|
ASpawnResourceGenerationItem::ASpawnResourceGenerationItem() {
|
|
this->Resource = NULL;
|
|
this->BaseAmount = 0.00f;
|
|
this->Sphere = CreateDefaultSubobject<USphereComponent>(TEXT("Root"));
|
|
}
|
|
|