| 1234567891011121314 |
- // Constants for Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT
- // ReSharper disable InconsistentNaming
- namespace Ryujinx.Tests.Unicorn.Native.Const
- {
- public enum Permission
- {
- NONE = 0,
- READ = 1,
- WRITE = 2,
- EXEC = 4,
- ALL = 7,
- }
- }
|