feat(hs): view plugin to open team-select panel

This commit is contained in:
Acentech Dev
2026-07-20 23:28:04 +03:00
parent f5e1f46444
commit 2efe1ef84d
2 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// <copyright file="IShowHeykelSavasiTeamPanelPlugIn.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.GameLogic.Views.MiniGames;
/// <summary>
/// Interface of a view whose implementation informs about the opened Heykel Savasi team-select panel.
/// </summary>
public interface IShowHeykelSavasiTeamPanelPlugIn : IViewPlugIn
{
/// <summary>
/// Shows the Heykel Savasi team-select panel.
/// </summary>
/// <param name="redCount">The current number of players in the red team.</param>
/// <param name="blueCount">The current number of players in the blue team.</param>
ValueTask ShowTeamPanelAsync(int redCount, int blueCount);
}