mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 13:23:40 +01:00
feat(SeStringHandling): Add NewLinePayload
This commit is contained in:
parent
ea9ce0d776
commit
6bedebba87
3 changed files with 50 additions and 2 deletions
|
|
@ -131,6 +131,10 @@ namespace Dalamud.Game.Text.SeStringHandling
|
|||
payload = new EmphasisItalicPayload();
|
||||
break;
|
||||
|
||||
case SeStringChunkType.NewLine:
|
||||
payload = NewLinePayload.Payload;
|
||||
break;
|
||||
|
||||
case SeStringChunkType.SeHyphen:
|
||||
payload = SeHyphenPayload.Payload;
|
||||
break;
|
||||
|
|
@ -295,6 +299,11 @@ namespace Dalamud.Game.Text.SeStringHandling
|
|||
/// </summary>
|
||||
EmphasisItalic = 0x1A,
|
||||
|
||||
/// <summary>
|
||||
/// See the <see cref="NewLinePayload"/>
|
||||
/// </summary>
|
||||
NewLine = 0x10,
|
||||
|
||||
/// <summary>
|
||||
/// See the <see cref="SeHyphenPayload"/> class.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue