Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Utility/FormattedMessage: Work around dotnet/roslyn#57870
Browse files Browse the repository at this point in the history
  • Loading branch information
Efruit committed Nov 30, 2021
1 parent fc15c94 commit 1339b36
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Robust.Shared/Utility/FormattedMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ namespace Robust.Shared.Utility
[Serializable, NetSerializable]
public record struct Section
{
public FontStyle Style;
public FontSize Size;
public TextAlign Alignment;
public int Color;
public MetaFlags Meta;
public FontStyle Style = default;
public FontSize Size = default;
public TextAlign Alignment = default;
public int Color = default;
public MetaFlags Meta = default;
public string Content = string.Empty;
}

Expand Down

0 comments on commit 1339b36

Please sign in to comment.