mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 05:51:22 +00:00
19 lines
282 B
C++
19 lines
282 B
C++
#ifndef __URDE_CWORDBREAKTABLES_HPP__
|
|
#define __URDE_CWORDBREAKTABLES_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CWordBreakTables
|
|
{
|
|
public:
|
|
static int GetBeginRank(wchar_t ch);
|
|
static int GetEndRank(wchar_t ch);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CWORDBREAKTABLES_HPP__
|