Files
modorganizer-bsapacker/src/ArchiveAutoService.cpp
T
2019-11-13 21:19:08 +00:00

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