feat(battle-engine): copy-loop closure to 3282 files (member-surface frontier)
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Wizard;
|
||||
|
||||
public class GatheringFriendInviteListPlate : MonoBehaviour
|
||||
{
|
||||
[SerializeField]
|
||||
private GameObject _alreadyAddGathering;
|
||||
|
||||
[SerializeField]
|
||||
private GameObject _alreadyInvited;
|
||||
|
||||
[SerializeField]
|
||||
private UserListViewPlate _friendListPlate;
|
||||
|
||||
public void Initialize(GatheringFriendListTask.InviteFriendData inviteData)
|
||||
{
|
||||
_alreadyAddGathering.SetActive(inviteData.IsJoinGathering);
|
||||
_friendListPlate.SetButtonVisible(!inviteData.IsJoinGathering && !inviteData.IsInvited);
|
||||
_alreadyInvited.SetActive(inviteData.IsInvited);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user