mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-23 10:14:29 -05:00
15 lines
343 B
C++
15 lines
343 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace ui
|
|
{
|
|
namespace strings
|
|
{
|
|
// This inits strings/loads translations from romfs
|
|
void init(void);
|
|
|
|
// These return strings for ui.
|
|
std::string getString(const std::string &name, int index);
|
|
const char *getCString(const std::string &name, int index);
|
|
}
|
|
} |