mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-22 01:34:13 -05:00
14 lines
342 B
C++
14 lines
342 B
C++
#pragma once
|
|
#include "strings/names.hpp"
|
|
|
|
#include <string_view>
|
|
|
|
namespace strings
|
|
{
|
|
// Attempts to load strings from file in RomFS.
|
|
bool initialize();
|
|
|
|
// Returns string with name and index. Returns nullptr if string doesn't exist.
|
|
const char *get_by_name(std::string_view name, int index) noexcept;
|
|
} // namespace strings
|