DRG-Femboy-Voice/Source/FSD/Private/ChargedProjectileLauncherComponent.cpp
2025-04-15 12:39:31 -07:00

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;
}