feat(hs): view plugin to open team-select panel
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user