chicken_dy/Assets/HCMiniSdk/Scripts/WebGL/HCDefault/HCAccount.cs

12 lines
280 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace HC
{
public class HCAccount : HCIAccount
{
public void Login(Action<HCLoginResult> callback)
{
HCDebugger.LogDebug($"[HCAccount] [Login] Editor模式下暂时不支持登陆. 登陆 : ${callback}");
}
}
}