Update EventCaller.cs

Should fix Alpha build not compiling
This commit is contained in:
FancyEX 2024-05-15 17:19:06 -04:00 committed by minenice55
parent 04e4b72dbc
commit 14c2abc91c

View file

@ -109,6 +109,11 @@ namespace HeavenStudio
}
}
public static List<RiqEntity> GetAllInGameManagerList(string gameName)
{
return instance.gameManager.Beatmap.Entities.FindAll(c => c.datamodel.Split('/')[0] == gameName);
}
public static List<RiqEntity> GetAllInGameManagerList(string gameName, string[] include)
{
Predicate<RiqEntity> match = c =>
@ -134,4 +139,4 @@ namespace HeavenStudio
return instance.minigames.Values.ToList().FindAll(c => c.fxOnly);
}
}
}
}