mirror of
https://github.com/ModOrganizer2/modorganizer-bsapacker.git
synced 2026-07-27 14:06:14 -07:00
13 lines
302 B
C++
13 lines
302 B
C++
#include <bsapacker/ArchiveAutoService.h>
|
|
|
|
namespace BsaPacker
|
|
{
|
|
void ArchiveAutoService::CreateBSA(BSArchiveAuto* archive,
|
|
const QString& archiveName,
|
|
const bsa_archive_type_e type) const
|
|
{
|
|
archive->create(archiveName, type);
|
|
archive->save();
|
|
}
|
|
} // namespace BsaPacker
|