Skip to content
 
 

仓库 files navigation

Purpose of this project

This project is aimed at reading BUNDLE archives used in Burnout Paradise. The project is used in libapt2 but might be helpful for others for usage.

Build status

Build Status Build status

How to build

$ mkdir build && cd build
$ cmake ..
$ cmake --build .

How to use the library

#include <libbndl/bundle.hpp>
#include <iostream>

int main(int argc,char** argv)
{
    // Create a bundle instance
    libbndl::Bundle arch;
    // Load the archive
    arch.Load(argv[1]);
    // Load an entry from the archive
    EntryData *entry = arch.GetBinary(argv[2]);
    // etc.
    // Remember to delete the EntryData and its data members.
    // ...
}

关于

Library to read bundle (BNDL/BND2) archives from Burnout Paradise

Resources

Stars

6 stars

关注者

2 watching

复刻s

发布

贡献者

Languages