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