Issues |
---|
Library to handle and parse Pangya WangED project (.gbin
/.sgbin
/.aibin
) files.
You can download this package on NuGet using the .NET CLI
dotnet add package PangLib.WEP
Currently, there isn't much use for the library, but it will be able to parse different sections of the file and save them into instance attributes for you to eventually work with.
// Load WEP file into instance
WEPFile WEP = new WEPFile(File.Open("./sand_01.gbin", FileMode.Open));
// You can now access the different structure types in their corresponding member variables
- While the files are parsed down correctly to the last byte, the structures aren't fully correct yet.