24 lines
598 B
C#
24 lines
598 B
C#
using System;
|
|
|
|
// Token: 0x02000149 RID: 329
|
|
public interface IPartnerList
|
|
{
|
|
// Token: 0x06000B27 RID: 2855
|
|
int CurrentPartnerIndex(int monitorId);
|
|
|
|
// Token: 0x06000B28 RID: 2856
|
|
bool IsPartnerBoundary(int monitorId, int diffIndex, out int overCount);
|
|
|
|
// Token: 0x06000B29 RID: 2857
|
|
CollectionData GetPartnerById(int monitorId, int targetId);
|
|
|
|
// Token: 0x06000B2A RID: 2858
|
|
CollectionData GetPartner(int monitorId, int diffIndex);
|
|
|
|
// Token: 0x06000B2B RID: 2859
|
|
int GetAllPartnerNum(int monitorId);
|
|
|
|
// Token: 0x06000B2C RID: 2860
|
|
bool CanMoveToPresentSequence(int monitorId);
|
|
}
|