-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65a6f61
commit 703dedb
Showing
11 changed files
with
619 additions
and
516 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace UnitaleFontMaker | ||
{ | ||
/// <summary> | ||
/// 多个字符 | ||
/// </summary> | ||
public class Characters | ||
{ | ||
/// <summary> | ||
/// 必须添加的字符 | ||
/// </summary> | ||
public const string MUST_CHARS = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ "; //注意最后面还有一个空格 | ||
|
||
/// <summary> | ||
/// 添加单个字符 | ||
/// </summary> | ||
/// <param name="c">待添加的字符</param> | ||
public void AddChar(Character c) | ||
{ | ||
|
||
} | ||
|
||
/// <summary> | ||
/// 添加多个字符 | ||
/// </summary> | ||
/// <param name="c">待添加的字符</param> | ||
public void AddChars(Character[] c) | ||
{ | ||
|
||
} | ||
|
||
/// <summary> | ||
/// 添加字符串中的所有字符 | ||
/// </summary> | ||
/// <param name="s">待添加的字符串</param> | ||
public void AddChars(string s) | ||
{ | ||
|
||
} | ||
|
||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.