mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-04-17 14:34:05 -05: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
15 lines
203 B
C#
15 lines
203 B
C#
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Fs
|
|
{
|
|
[Flags]
|
|
public enum OpenMode
|
|
{
|
|
Read = 1,
|
|
Write = 2,
|
|
AllowAppend = 4,
|
|
ReadWrite = 3,
|
|
All = 7,
|
|
}
|
|
}
|