2022-01-05 19:11:58 +03:00

7 lines
119 B
C#

namespace Runtime.Controller
{
public interface IInitialization : IController
{
void Init();
}
}