Elin Modding Docs Doc
Loading...
Searching...
No Matches
SpawnListThing.cs
1using System;
2
3// Token: 0x020004EF RID: 1263
4public class SpawnListThing : EClass
5{
6 // Token: 0x060021B5 RID: 8629 RVA: 0x000BA6BD File Offset: 0x000B88BD
7 public static SpawnList Get(string id, Func<SourceThing.Row, bool> func)
8 {
9 return SpawnList.Get(id, "thing", new ThingFilter
10 {
11 ShouldPass = func
12 });
13 }
14}