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.
|
#pragma once
|
|
|
|
|
|
#include "SevenZipLibrary.h"
|
|
#include "CompressionFormat.h"
|
|
|
|
|
|
namespace SevenZip
|
|
{
|
|
class ListCallback
|
|
{
|
|
public:
|
|
/*
|
|
Called for each file found in the archive. Size in bytes.
|
|
*/
|
|
virtual void OnFileFound(const TString& archivePath, const TString& filePath, int size) {}
|
|
|
|
/*
|
|
Called when all the files have been listed
|
|
*/
|
|
virtual void OnListingDone(const TString& archivePath) {}
|
|
};
|
|
}
|