This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,28 @@
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;
}