- Add PlayFabSDK as local package dependency - Add PlayFabTool.cs for PlayFab API integration - Implement LoginBySns method in TYSdkFacade - Add Android SNS login support in SDKManager and UnityBridgeFunc - Add Build Android With Debug menu option - Improve exception handling and timeout management 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
24 lines
640 B
C#
24 lines
640 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PlayFab
|
|
{
|
|
public struct PluginContractKey
|
|
{
|
|
public PluginContract _pluginContract;
|
|
public string _pluginName;
|
|
}
|
|
|
|
public class PluginContractKeyComparator : EqualityComparer<PluginContractKey>
|
|
{
|
|
public override bool Equals(PluginContractKey x, PluginContractKey y)
|
|
{
|
|
return x._pluginContract == y._pluginContract && x._pluginName.Equals(y._pluginName);
|
|
}
|
|
|
|
public override int GetHashCode(PluginContractKey obj)
|
|
{
|
|
return (int)obj._pluginContract + obj._pluginName.GetHashCode();
|
|
}
|
|
}
|
|
}
|