A modded EditSaber for making beat saber maps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
501 B

#pragma once
#include "SevenZipLibrary.h"
#include "SevenZipArchive.h"
#include "CompressionFormat.h"
#include "ListCallback.h"
namespace SevenZip
{
class SevenZipLister : public SevenZipArchive
{
public:
TString m_archivePath;
SevenZipLister( const SevenZipLibrary& library, const TString& archivePath );
virtual ~SevenZipLister();
virtual bool ListArchive(ListCallback* callback);
private:
bool ListArchive(const CComPtr< IStream >& archiveStream, ListCallback* callback);
};
}