| 98 | } |
| 99 | |
| 100 | bool BMFontConfiguration::initWithFNTfile(std::string_view FNTfile) |
| 101 | { |
| 102 | _characterSet = this->parseConfigFile(FNTfile); |
| 103 | |
| 104 | if (!_characterSet) |
| 105 | { |
| 106 | return false; |
| 107 | } |
| 108 | |
| 109 | return true; |
| 110 | } |
| 111 | |
| 112 | std::set<unsigned int>* BMFontConfiguration::getCharacterSet() const |
| 113 | { |