Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
YuCat-OVO committed Mar 13, 2024
1 parent 7798388 commit fb01e86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/GameManagement/GameManagementPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,12 @@ public override IEnumerable<SidebarItem> GetSidebarItems()
};
}

public override IEnumerable<MainMenuItem> GetMainMenuItems()
public override IEnumerable<MainMenuItem> GetMainMenuItems(GetMainMenuItemsArgs args)
{
yield return new MainMenuItem
{
Description = "Remove unknown games.",
Action = RemoveUnknownGamesAction,
Action = (_) => RemoveUnknownGamesAction(),
};
}
private void RemoveUnknownGamesAction()
Expand Down

0 comments on commit fb01e86

Please sign in to comment.