shaoxiadiablo/Assets/AGame/Scripts/GlobalNotifier.cs
2025-05-18 01:04:31 +08:00

30 lines
838 B
C#

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