forked from alterware/s1-mod
11 lines
224 B
C++
11 lines
224 B
C++
#pragma once
|
|
|
|
#include "game/game.hpp"
|
|
|
|
namespace fastfiles
|
|
{
|
|
std::string get_current_fastfile();
|
|
|
|
void enum_assets(game::XAssetType type, const std::function<void(game::XAssetHeader)>& callback, bool include_override);
|
|
}
|