public override List <AssetOp> GetInstallOps(ModContext context)
 {
     Log.LogMsg($"Installing HookMod component");
     if (InstallAction == null)
     {
         throw new InvalidOperationException("HookMod is being installed, but has no install action!");
     }
     return(InstallAction.GetInstallOps(context));
 }