public static void Shutdown() { if (instance == null) return; instance.ShutdownInternal(); instance = null; }
public static bool Init() { if (instance != null) return false; instance = new KennyApp(); return instance.InitInternal(); }