namespace TinaX
{
///
/// TinaX bootstrap interface
///
public interface IXBootstrap
{
///
/// Invoke after framework's services init/register , and brfore framework's services start.
///
void OnInit(IXCore core);
///
/// Invoke after framework's services start.
///
void OnStart(IXCore core);
void OnQuit();
void OnAppRestart();
}
}