// *********************************************************************** // Assembly : Game // Author : Kimch // Created : 2020-10-09 // Description : // Last Modified By : // Last Modified On : // *********************************************************************** // // // *********************************************************************** using System.Collections; using System.Collections.Generic; using UnityEngine; namespace G { /// /// 类功能描述 /// public class GlobalNotifier { public static void PostNotification(int notificationName, object body = null, string type = null) { KFramework.GameFacade.PostNotification(notificationName, body, type); } } }