metaforce/Runtime/GuiSys/CWordBreakTables.hpp

12 lines
177 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-03-18 17:07:31 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-03-18 17:07:31 -07:00
2018-12-07 21:30:43 -08:00
class CWordBreakTables {
2016-03-19 17:32:30 -07:00
public:
static int GetBeginRank(char16_t ch);
static int GetEndRank(char16_t ch);
2016-03-18 17:07:31 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce