Skip to content

Latest commit

 

History

History

PangLib.PSP.NOP

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

PangLib.PSP.NOP

Nuget Nuget Issues

Library to handle Pangya: Fantasy Golf (PSP) archive files (.nop) files.

Installation

You can download this package on NuGet using the .NET CLI

dotnet add package PangLib.PSP.NOP

Usage

The main usage of this package right now is to load and extract PAK files

// Load the PSP NOP file into a new instance of NOPFile
NOPFile NOP = new NOPFile("./west_01_n.nop");

// Extracts the NOP file
// NOTE: NOP file paths are absolute, so the game will attempt to extract to
// c:\projectg_psp\projectg\data_umd\..
NOP.ExtractFiles();