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 modInterface.RegisterScriptMod(AtProtoSaveFactory.Create(modInterface)); 13 } 14 15 public void Dispose() { 16 // Cleanup anything you do here 17 } 18}