22 lines
329 B
C#
22 lines
329 B
C#
using System;
|
|
|
|
namespace Minesweeper.Presentation.Views
|
|
{
|
|
public sealed class NullMainMenuView : IMainMenuView
|
|
{
|
|
public event Action StartClicked
|
|
{
|
|
add { }
|
|
remove { }
|
|
}
|
|
|
|
public void Show()
|
|
{
|
|
}
|
|
|
|
public void Hide()
|
|
{
|
|
}
|
|
}
|
|
}
|