this repo has no description
at master 216 B view raw
1using GDWeave; 2 3namespace Teemaw.Calico.Util; 4 5public static class WeaveUtil 6{ 7 public static bool IsModLoaded(IModInterface modInterface, string modName) => 8 modInterface.LoadedMods.Contains(modName); 9}