* Implement NGC service * Use raw byte arrays instead of string for _wordSeparators * Silence IDE0230 for _wordSeparators * Try to silence warning about _rangeValuesCount not being read on SparseSet * Make AcType enum private * Add abstract methods and one TODO that I forgot * PR feedback * More PR feedback * More PR feedback
16 lines
429 B
C#
16 lines
429 B
C#
namespace Ryujinx.Horizon.Sdk.Ngc.Detail
|
|
{
|
|
struct MatchCheckState
|
|
{
|
|
public uint CheckMask;
|
|
public readonly uint RegionMask;
|
|
public readonly ProfanityFilterOption Option;
|
|
|
|
public MatchCheckState(uint checkMask, uint regionMask, ProfanityFilterOption option)
|
|
{
|
|
CheckMask = checkMask;
|
|
RegionMask = regionMask;
|
|
Option = option;
|
|
}
|
|
}
|
|
}
|