Merge pull request #8784 from Mailaender/heli-drop-sounds

Added helicopter takeoff and landing sound
This commit is contained in:
abcdefg30
2015-08-04 14:53:00 +02:00
5 changed files with 34 additions and 4 deletions

View File

@@ -30,6 +30,9 @@ namespace OpenRA.Mods.Common.Traits
[Desc("How fast the helicopter ascends or descends.")]
public readonly WDist AltitudeVelocity = new WDist(43);
public readonly string TakeoffSound = null;
public readonly string LandingSound = null;
public override object Create(ActorInitializer init) { return new Helicopter(init, this); }
}