2022-01-16 05:40:49 +03:00

7 lines
119 B
C#

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