metaforce/Runtime/GuiSys/CWordBreakTables.hpp

12 lines
165 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-03-19 00:07:31 +00:00
2018-12-08 05:30:43 +00:00
namespace urde {
2016-03-19 00:07:31 +00:00
2018-12-08 05:30:43 +00:00
class CWordBreakTables {
2016-03-20 00:32:30 +00:00
public:
2018-12-08 05:30:43 +00:00
static int GetBeginRank(wchar_t ch);
static int GetEndRank(wchar_t ch);
2016-03-19 00:07:31 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde