15 lines
528 B
C++
Executable file
15 lines
528 B
C++
Executable file
#include "ChargedProjectileLauncherComponent.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
void UChargedProjectileLauncherComponent::SetProjectileClassCharged(TSubclassOf<AProjectileBase> NewProjectileClass) {
|
|
}
|
|
|
|
void UChargedProjectileLauncherComponent::SetProjectileClass(TSubclassOf<AProjectileBase> NewProjectileClass) {
|
|
}
|
|
|
|
UChargedProjectileLauncherComponent::UChargedProjectileLauncherComponent() {
|
|
this->NormalProjectileClass = NULL;
|
|
this->ChargedProjectileClass = NULL;
|
|
this->ProjectileChangeChargeValue = 1.00f;
|
|
}
|
|
|