12 lines
263 B
C++
Executable file
12 lines
263 B
C++
Executable file
#include "VanityTestCharacter.h"
|
|
|
|
void AVanityTestCharacter::SetupVanity() {
|
|
}
|
|
|
|
AVanityTestCharacter::AVanityTestCharacter() {
|
|
this->ArmorThickness = 0.00f;
|
|
this->BeardThickness = 0.00f;
|
|
this->ArmorCoversBeard = false;
|
|
this->WeaponMesh = NULL;
|
|
}
|
|
|