Skip to content

Latest commit

 

History

History

PangLib.PSP.PAK

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

PangLib.PSP.PAK

Nuget Nuget Issues

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

Installation

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

dotnet add package PangLib.PSP.PAK

Usage

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

// Load the PSP PAK file pair into a new instance of PAKFile
PAKFile PAK = new PAKFile("./psppackfilelist.pak", "./pspdata.pak");

// Extracts the PAK file into the ".\data\" subdirectory
PAK.ExtractFiles(".\\data\\");