metaforce/Runtime/GuiSys/CWordBreakTables.hpp

17 lines
179 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-03-19 00:07:31 +00:00
2016-03-20 00:32:30 +00:00
#include "RetroTypes.hpp"
2016-03-19 00:07:31 +00:00
namespace urde
{
class CWordBreakTables
{
2016-03-20 00:32:30 +00:00
public:
static int GetBeginRank(wchar_t ch);
static int GetEndRank(wchar_t ch);
2016-03-19 00:07:31 +00:00
};
}