RyuKen/Ryujinx/OsHle/Services/ServiceFriend.cs

16 lines
336 B
C#
Raw Normal View History

using Ryujinx.OsHle.Objects.Friend;
2018-02-04 23:08:20 +00:00
using static Ryujinx.OsHle.Objects.ObjHelper;
namespace Ryujinx.OsHle.Services
{
static partial class Service
{
public static long FriendCreateFriendService(ServiceCtx Context)
{
MakeObject(Context, new IFriendService());
2018-02-04 23:08:20 +00:00
return 0;
}
}
}