CTT/Server/Hotfix/Game/Helper/UserHelper.cs

15 lines
263 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Text;
namespace ET
{
public class UserHelper
{
public static async ETTask<User> Query(long id)
{
return await UserComponent.Instance.Query(id);
}
}
}