mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
280 B
C++
15 lines
280 B
C++
#include "SourceDriver.h"
|
|
|
|
FSourceDriver::FSourceDriver() {
|
|
SourceComponent = EComponentType::None;
|
|
UseQuaternion = false;
|
|
DrivingCurve = NULL;
|
|
Multiplier = 1;
|
|
bUseRange = false;
|
|
RangeMin = 1;
|
|
RangeMax = 1;
|
|
RemappedMin = 1;
|
|
RemappedMax = 1;
|
|
}
|
|
|