mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-15 11:42:25 +00:00
13 lines
189 B
C++
13 lines
189 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Strings {
|
|
|
|
using LookupFn = const wchar_t* (*)(int);
|
|
|
|
void init(LookupFn fn);
|
|
[[nodiscard]] const wchar_t* get(int id);
|
|
|
|
} // namespace Strings
|