7 lines
119 B
C#

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