12 lines
246 B
C++
Executable file
12 lines
246 B
C++
Executable file
#include "PickaxeSet.h"
|
|
|
|
FPickaxeSet::FPickaxeSet() {
|
|
this->BladeFront = NULL;
|
|
this->OptionalBladeBack = NULL;
|
|
this->Pommel = NULL;
|
|
this->Handle = NULL;
|
|
this->Shaft = NULL;
|
|
this->Head = NULL;
|
|
this->Material = NULL;
|
|
}
|
|
|