10 lines
284 B
C++
Executable file
10 lines
284 B
C++
Executable file
#include "ProjectileLauncherComponent.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
void UProjectileLauncherComponent::SetProjectileClass(TSubclassOf<AProjectileBase> NewProjectileClass) {
|
|
}
|
|
|
|
UProjectileLauncherComponent::UProjectileLauncherComponent() {
|
|
this->ProjectileClass = NULL;
|
|
}
|
|
|