Files
FreewayGamesTest/Assets/Runtime/Presentation/Presenters/IPresenter.cs
T
2026-06-06 22:33:15 +07:00

10 lines
150 B
C#

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