-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
26 changed files
with
954 additions
and
64 deletions.
There are no files selected for viewing
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,32 @@ | ||
namespace QQBot; | ||
|
||
/// <summary> | ||
/// 表示一个表情方式的类型。 | ||
/// </summary> | ||
public enum EmojiType | ||
{ | ||
/// <summary> | ||
/// 系统表情,小黄脸表情。 | ||
/// </summary> | ||
System = 1, | ||
|
||
/// <summary> | ||
/// Emoji 表情。 | ||
/// </summary> | ||
Emoji = 2, | ||
|
||
/// <summary> | ||
/// 超级表情 | ||
/// </summary> | ||
SuperEmote = 3, | ||
|
||
/// <summary> | ||
/// 商城表情。 | ||
/// </summary> | ||
Sticker = 4, | ||
|
||
/// <summary> | ||
/// QQ 秀表情。 | ||
/// </summary> | ||
QQShow = 6 | ||
} |
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.