2022-03-01 15:38:52 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "game/game.hpp"
|
|
|
|
|
|
|
|
namespace fastfiles
|
|
|
|
{
|
|
|
|
std::string get_current_fastfile();
|
2022-03-13 10:31:57 -04:00
|
|
|
|
|
|
|
void enum_assets(const game::XAssetType type,
|
|
|
|
const std::function<void(game::XAssetHeader)>& callback, const bool includeOverride);
|
2022-03-01 15:38:52 -05:00
|
|
|
}
|