Added a mod checker to check if mod exists

This commit is contained in:
coolGi2007
2022-01-11 08:23:14 +00:00
parent 3caf8facf9
commit 3ebdfd6e87
@@ -0,0 +1,12 @@
package com.seibel.lod.core.wrapperInterfaces.modAccessor;
/**
* Checks if a mod is loaded
*
* @author coolGi2007
* @version 1-11-2022
*/
public interface IModChecker {
/** Checks if a mod is loaded */
boolean isModLoaded(String modid);
}