mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 13:46:03 +00:00
20 lines
610 B
C#
20 lines
610 B
C#
using System.IO;
|
|
|
|
namespace BinaryObjectScanner.FileType
|
|
{
|
|
/// <summary>
|
|
/// StarForce Filesystem file
|
|
/// </summary>
|
|
/// <see href="https://forum.xentax.com/viewtopic.php?f=21&t=2084"/>
|
|
/// TODO: Implement extraction
|
|
public class SFFS : DetectableBase<SabreTools.Serialization.Wrappers.SFFS>
|
|
{
|
|
/// <inheritdoc/>
|
|
public SFFS(SabreTools.Serialization.Wrappers.SFFS wrapper) : base(wrapper) { }
|
|
|
|
/// <inheritdoc/>
|
|
public override string? Detect(Stream stream, string file, bool includeDebug)
|
|
=> "StarForce Filesystem Container";
|
|
}
|
|
}
|