Files
2026-04-22 15:51:07 +02:00

16 lines
439 B
C++

#include "FortEffectDistanceQuality.h"
FFortEffectDistanceQuality::FFortEffectDistanceQuality() {
this->MinDistanceCinematic = 0.00f;
this->MinDistanceEpic = 0.00f;
this->MinDistanceHigh = 0.00f;
this->MinDistanceMedium = 0.00f;
this->MinDistanceLow = 0.00f;
this->bAllowCinematic = false;
this->bAllowEpic = false;
this->bAllowHigh = false;
this->bAllowMedium = false;
this->bAllowLow = false;
}