mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
25 lines
635 B
C++
25 lines
635 B
C++
#include "FortGameStatePvPBaseDestruction.h"
|
|
|
|
int32 AFortGameStatePvPBaseDestruction::GetTeamLevelForExperienceAmount(int32 Experience) const {
|
|
return 0;
|
|
}
|
|
|
|
int32 AFortGameStatePvPBaseDestruction::GetMaxTeamLevel() const {
|
|
return 0;
|
|
}
|
|
|
|
int32 AFortGameStatePvPBaseDestruction::GetMaxTeamExperience() const {
|
|
return 0;
|
|
}
|
|
|
|
int32 AFortGameStatePvPBaseDestruction::GetExperienceRequiredForTeamLevel(int32 TeamLevel) const {
|
|
return 0;
|
|
}
|
|
|
|
AFortGameStatePvPBaseDestruction::AFortGameStatePvPBaseDestruction() {
|
|
this->SessionXPRowName = TEXT("DefaultPvP");
|
|
this->MaxTeamLevel = 20;
|
|
this->MaxTeamExperience = 100;
|
|
}
|
|
|