ServiceFriend.cs 351 B

12345678910111213141516
  1. using Ryujinx.Core.OsHle.Objects.Friend;
  2. using static Ryujinx.Core.OsHle.Objects.ObjHelper;
  3. namespace Ryujinx.Core.OsHle.Services
  4. {
  5. static partial class Service
  6. {
  7. public static long FriendCreateFriendService(ServiceCtx Context)
  8. {
  9. MakeObject(Context, new IFriendService());
  10. return 0;
  11. }
  12. }
  13. }