2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 07:51:21 +00:00
metaforce/Runtime/GuiSys/CWordBreakTables.hpp
2018-10-06 17:42:33 -10:00

17 lines
179 B
C++

#pragma once
#include "RetroTypes.hpp"
namespace urde
{
class CWordBreakTables
{
public:
static int GetBeginRank(wchar_t ch);
static int GetEndRank(wchar_t ch);
};
}