(DowAudio): dummy format that links DOW extension to WaveAudio.

This commit is contained in:
morkt 2016-10-29 02:05:03 +04:00
parent ab965b9529
commit 559f47c673

View File

@ -80,4 +80,13 @@ namespace GameRes.Formats.Nekopunch
return new LzssStream (input); return new LzssStream (input);
} }
} }
/// <summary>
/// Link DOW extension to WaveAudio format.
/// </summary>
[Export(typeof(AudioFormat))]
public class DowAudio : WaveAudio
{
public override string Tag { get { return "DOW"; } }
}
} }