Exemple #1
0
        public static void Shutdown()
        {
            if (instance == null)
                return;

            instance.ShutdownInternal();
            instance = null;
        }
Exemple #2
0
        public static bool Init()
        {
            if (instance != null)
                return false;

            instance = new KennyApp();
            return instance.InitInternal();
        }