mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-11 14:13:05 +00:00
13 lines
262 B
C++
13 lines
262 B
C++
#pragma once
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
namespace BlockStateDecoderRegistry
|
|
{
|
|
using DecoderFn = std::function<std::wstring(int)>;
|
|
|
|
void registerDecoder(int tileId, DecoderFn fn);
|
|
|
|
std::wstring decode(int tileId, int composite);
|
|
}
|