Files
2026-06-07 00:30:10 +07:00

10 lines
150 B
C#

using System;
namespace Minesweeper.Presentation.Presenters
{
public interface IPresenter : IDisposable
{
void Initialize();
}
}