15 lines
343 B
C#
15 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scenes.Ride.Scripts
|
|
{
|
|
public class EventDelegate : Singleton<EventDelegate>
|
|
{
|
|
public EventQueueSystem.EventDelegate<GameEvent> JoyStickUpHandler;
|
|
//...其他的全局委托
|
|
}
|
|
}
|