FriendError.cs 197 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Friend
  2. {
  3. static class FriendError
  4. {
  5. public const int InvalidArgument = 2;
  6. public const int NotificationQueueEmpty = 15;
  7. }
  8. }