Even More Modifiers  1.0.0.0
A mod for rolling various bonus stats on items
ModSupport.cs
Go to the documentation of this file.
1 using Terraria.ModLoader;
2 
3 namespace Loot.ModSupport
4 {
8  internal abstract class ModSupport
9  {
10  public abstract string ModName { get; }
11  public bool ModIsLoaded { internal set; get; }
12 
13  public Mod GetSupportingMod() => ModLoader.GetMod(ModName);
14 
15  public abstract bool CheckValidity(Mod mod);
16 
17  public virtual void AddClientSupport(Mod mod)
18  {
19  }
20 
21  public virtual void AddServerSupport(Mod mod)
22  {
23  }
24  }
25 }