31 lines
539 B
C#
31 lines
539 B
C#
using System;
|
|
using Minesweeper.Config;
|
|
|
|
namespace Minesweeper.Presentation.Views
|
|
{
|
|
public sealed class NullTopPanelView : ITopPanelView
|
|
{
|
|
public event Action SmileClicked
|
|
{
|
|
add { }
|
|
remove { }
|
|
}
|
|
|
|
public void SetActive(bool active)
|
|
{
|
|
}
|
|
|
|
public void SetRemainingMines(int remainingMines)
|
|
{
|
|
}
|
|
|
|
public void SetTimer(float seconds)
|
|
{
|
|
}
|
|
|
|
public void SetSmile(SmileFaceState state)
|
|
{
|
|
}
|
|
}
|
|
}
|