mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-08 18:06:34 +00:00
19 lines
471 B
C#
19 lines
471 B
C#
using System.IO;
|
|
using SabreTools.Serialization.Wrappers;
|
|
|
|
namespace BinaryObjectScanner.FileType
|
|
{
|
|
/// <summary>
|
|
/// PlayJ audio file
|
|
/// </summary>
|
|
public class PLJ : DetectableBase<PlayJAudioFile>
|
|
{
|
|
/// <inheritdoc/>
|
|
public PLJ(PlayJAudioFile? wrapper) : base(wrapper) { }
|
|
|
|
/// <inheritdoc/>
|
|
public override string? Detect(Stream stream, string file, bool includeDebug)
|
|
=> "PlayJ Audio File";
|
|
}
|
|
}
|