1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
using System; using UnityEngine; namespace XMainClient.UI { internal interface IGVGBattleMember { void Setup(GameObject sv, int index); void ReFreshData(GVGBattleInfo battleInfo); void SetActive(bool active); bool IsActive(); void OnUpdate(); void Recycle(); } }