Skip to content

Commit

Permalink
fix(Plugins): Virtualize new methods
Browse files Browse the repository at this point in the history
Grr, I thought I caught this at some point.
  • Loading branch information
regalialong committed Jun 24, 2024
1 parent ecb4381 commit ac90019
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AdGoBye.Plugins/BasePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ public virtual EVerifyResult Verify(Content context, ref readonly ContentAssetMa
return EVerifyResult.Success;
}

public void Initialize(Content context)
public virtual void Initialize(Content context)
{
}

public void PostPatch(Content context)
public virtual void PostPatch(Content context)
{
}

public bool WantsIndexerTracking()
public virtual bool WantsIndexerTracking()
{
return true;
}
Expand Down

0 comments on commit ac90019

Please sign in to comment.