28 lines
785 B
C#
Raw Normal View History

2025-02-12 08:43:33 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using ZXK.Framework;
/*******************************************************************************
*Create By CG
*Function _发布者()
*******************************************************************************/
namespace ZXK.Test
{
public class SenderCtrl : MonoBehaviour
{
//void Update()
//{
// if (Input.GetKeyDown(KeyCode.Space))
// {
// MyEventArgs args = new MyEventArgs
// {
// _ToolName = "发布者"
// };
// EventCenterManager.Instance.Dispatch(EventEnum.Test, this, args);
// }
//}
}
}