using UnityEngine; using UniFramework.Event; namespace GFGGame.Launcher { public class QDManagerInit { public static void InitPlatform() { switch (LauncherConfig.ChannelId) { default: UniEvent.SendMessage(new LauncherEvent.InitPlatformResult() { success = true}); break; } } } }