public ImpactData(Single EffectDuration, ImpactOrientation EffectOrientation, Single AngleThreshold, Single PlacementRadius, SoundLevel SoundLevel, YesNoUInt HasDecalData) { this.EffectDuration = EffectDuration; this.EffectOrientation = EffectOrientation; this.AngleThreshold = AngleThreshold; this.PlacementRadius = PlacementRadius; this.SoundLevel = SoundLevel; this.HasDecalData = HasDecalData; }
public ImpactData(string Tag = null) : base(Tag) { EffectDuration = new Single(); EffectOrientation = new ImpactOrientation(); AngleThreshold = new Single(); PlacementRadius = new Single(); SoundLevel = new SoundLevel(); HasDecalData = new YesNoUInt(); }