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

11 lines
382 B
C++
Executable file

#include "ExtruderPlant.h"
#include "Components/AudioComponent.h"
#include "Components/SkeletalMeshComponent.h"
AExtruderPlant::AExtruderPlant() {
this->SkeletalMesh = CreateDefaultSubobject<USkeletalMeshComponent>(TEXT("Mesh"));
this->ExtrudeAnimation = NULL;
this->RetractAnimation = NULL;
this->audio = CreateDefaultSubobject<UAudioComponent>(TEXT("audio"));
}