7 lines
181 B
C++
Executable file
7 lines
181 B
C++
Executable file
#include "Maggot.h"
|
|
#include "SimpleHealthComponent.h"
|
|
|
|
AMaggot::AMaggot() {
|
|
this->HealthComponent = CreateDefaultSubobject<USimpleHealthComponent>(TEXT("HealthComponent"));
|
|
}
|
|
|