29 lines
802 B
C#
29 lines
802 B
C#
using System;
|
|
|
|
// Token: 0x02000EA5 RID: 3749
|
|
[Serializable]
|
|
public class SpecificRestrictionConfigSet<SelectorType, ConfigType, ContentType> where SelectorType : IComparable where ConfigType : SpecificRestrictionConfig<SelectorType, ContentType>
|
|
{
|
|
// Token: 0x0601EFEE RID: 126958 RVA: 0x00875188 File Offset: 0x00873388
|
|
public ContentType BKMMKHJKJOO(SelectorType HANFGJOBJFL)
|
|
{
|
|
for (int i = 0; i < this.configs.Length; i++)
|
|
{
|
|
if (this.configs[i].Selector.CompareTo(HANFGJOBJFL) == 0)
|
|
{
|
|
return this.configs[i].Content;
|
|
}
|
|
}
|
|
return this.ANJBEOJKBPO();
|
|
}
|
|
|
|
// Token: 0x0601EFF0 RID: 126960 RVA: 0x00875200 File Offset: 0x00873400
|
|
public virtual ContentType ANJBEOJKBPO()
|
|
{
|
|
return default(ContentType);
|
|
}
|
|
|
|
// Token: 0x0400506D RID: 20589
|
|
public ConfigType[] configs;
|
|
}
|