mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-02 14:07:42 +02:00

* 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
13 lines
213 B
C#
13 lines
213 B
C#
|
|
namespace Ryujinx.Horizon.Sdk.Fs
|
|
{
|
|
public readonly struct FileHandle
|
|
{
|
|
public object Value { get; }
|
|
|
|
public FileHandle(object value)
|
|
{
|
|
Value = value;
|
|
}
|
|
}
|
|
}
|