this repo has no description
1using GDWeave; 2 3namespace Atproto; 4 5public class Mod : IMod { 6 public Config Config; 7 8 public Mod(IModInterface modInterface) { 9 Config = modInterface.ReadConfig<Config>(); 10 modInterface.RegisterScriptMod(CatchFishFactory.Create(modInterface)); 11 modInterface.RegisterScriptMod(CatptureFishFactory.Create(modInterface)); 12 } 13 14 public void Dispose() { 15 // Cleanup anything you do here 16 } 17}