15 lines
291 B
C++
Executable file
15 lines
291 B
C++
Executable file
#include "PickaxePart.h"
|
|
|
|
bool UPickaxePart::GetUnlockedFromStart() const {
|
|
return false;
|
|
}
|
|
|
|
EPickaxePartLocation UPickaxePart::GetPrefferedLocation() const {
|
|
return EPickaxePartLocation::Head;
|
|
}
|
|
|
|
UPickaxePart::UPickaxePart() {
|
|
this->Aquisition = NULL;
|
|
this->Item = NULL;
|
|
}
|
|
|