mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-02 15:37:16 +00:00
19 lines
537 B
C#
19 lines
537 B
C#
namespace Ryujinx.Horizon.Sdk.Ngc.Detail
|
|
{
|
|
struct MatchSimilarFormState
|
|
{
|
|
public MatchRangeList MatchRanges;
|
|
public SimilarFormTable SimilarFormTable;
|
|
public Utf8Text CanonicalText;
|
|
public int ReplaceEndOffset;
|
|
|
|
public MatchSimilarFormState(MatchRangeList matchRanges, SimilarFormTable similarFormTable)
|
|
{
|
|
MatchRanges = matchRanges;
|
|
SimilarFormTable = similarFormTable;
|
|
CanonicalText = new();
|
|
ReplaceEndOffset = 0;
|
|
}
|
|
}
|
|
}
|