SystemInitializer.Awake C# (CSharp) Метод

Awake() приватный Метод

private Awake ( ) : void
Результат void
    private void Awake()
    {
        LogService.InitialService(
            infoMethod: Debug.Log,
            infoFormatMethod: Debug.LogFormat,
            errorMethod: Debug.LogWarning,
            errorFormatMethod: Debug.LogWarningFormat,
            fatalMethod: Debug.LogError,
            fatalFormatMethod: Debug.LogErrorFormat);
        GameManager.Initial(new GameManager());
    }
}
SystemInitializer