Permission.cs 285 B

1234567891011121314
  1. // Constants for Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT
  2. // ReSharper disable InconsistentNaming
  3. namespace Ryujinx.Tests.Unicorn.Native.Const
  4. {
  5. public enum Permission
  6. {
  7. NONE = 0,
  8. READ = 1,
  9. WRITE = 2,
  10. EXEC = 4,
  11. ALL = 7,
  12. }
  13. }