mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
23 lines
449 B
C++
23 lines
449 B
C++
#include "CustomItemWrapModifier.h"
|
|
|
|
|
|
UMeshComponent* ACustomItemWrapModifier::GetWrappedMeshComponent() const {
|
|
return NULL;
|
|
}
|
|
|
|
AFortWeapon* ACustomItemWrapModifier::GetWeapon() const {
|
|
return NULL;
|
|
}
|
|
|
|
AFortAthenaVehicle* ACustomItemWrapModifier::GetVehicle() const {
|
|
return NULL;
|
|
}
|
|
|
|
AFortPlayerPawn* ACustomItemWrapModifier::GetAssociatedPlayerPawn() const {
|
|
return NULL;
|
|
}
|
|
|
|
ACustomItemWrapModifier::ACustomItemWrapModifier() {
|
|
}
|
|
|