metaforce/Runtime/GuiSys/CWordBreakTables.hpp

19 lines
282 B
C++
Raw Normal View History

2016-03-19 00:07:31 +00:00
#ifndef __URDE_CWORDBREAKTABLES_HPP__
#define __URDE_CWORDBREAKTABLES_HPP__
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
};
}
#endif // __URDE_CWORDBREAKTABLES_HPP__