Skip to content

Commit

Permalink
(LIB): possible archive extensions.
Browse files Browse the repository at this point in the history
  • Loading branch information
morkt committed Mar 30, 2020
1 parent 8cd3cac commit dd5259b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ArcFormats/Malie/ArcLIB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ public class LibOpener : ArchiveFormat
public override bool IsHierarchic { get { return true; } }
public override bool CanWrite { get { return false; } }

public LibOpener ()
{
Extensions = new string[] { "lib", "sdp" };
}

public override ArcFile TryOpen (ArcView file)
{
var reader = new Reader (file);
Expand Down

0 comments on commit dd5259b

Please sign in to comment.