mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
31 lines
760 B
C++
31 lines
760 B
C++
#include "AthenaBattleBusItemDefinition.h"
|
|
|
|
USoundBase* UAthenaBattleBusItemDefinition::GetLobbyLoopingSound() const {
|
|
return NULL;
|
|
}
|
|
|
|
USoundBase* UAthenaBattleBusItemDefinition::GetLobbyLoopingMusic() const {
|
|
return NULL;
|
|
}
|
|
|
|
USoundBase* UAthenaBattleBusItemDefinition::GetIgnitionSound() const {
|
|
return NULL;
|
|
}
|
|
|
|
USoundBase* UAthenaBattleBusItemDefinition::GetFlightLoopingSound() const {
|
|
return NULL;
|
|
}
|
|
|
|
USoundBase* UAthenaBattleBusItemDefinition::GetFlightLoopingMusic() const {
|
|
return NULL;
|
|
}
|
|
|
|
TSoftClassPtr<ABattleBusCosmeticInstanceBase> UAthenaBattleBusItemDefinition::GetBusPrefabClass() const {
|
|
return NULL;
|
|
}
|
|
|
|
UAthenaBattleBusItemDefinition::UAthenaBattleBusItemDefinition() {
|
|
ItemType = EFortItemType::AthenaBattleBus;
|
|
}
|
|
|