[Fix] UI Logic
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user