mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-04 01:39:13 +00:00
1feec26d1a
2700 line file too big; split into context-specific font classes.
12 lines
439 B
C#
12 lines
439 B
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public static class StringFont8a
|
|
{
|
|
public static ReadOnlySpan<char> DefinedPrivate =>
|
|
[
|
|
'\uE301', '\uE302', '\uE303', '\uE304', '\uE305', '\uE306', '\uE307', '\uE308', '\uE309', '\uE30A', '\uE30B', '\uE30C', '\uE30D', '\uE30E', '\uE30F',
|
|
'\uE310', '\uE311', '\uE312', '\uE313', '\uE314', '\uE315', '\uE316', '\uE317', '\uE318', '\uE319', '\uE31A', '\uE31B', '\uE31C',
|
|
];
|
|
}
|