zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/HotfixView/Event/QuitEvent.cs

15 lines
237 B
C#

using ET.EventType;
using System;
using System.Collections.Generic;
namespace ET
{
public class QuitEvent : AEvent_Sync<Quit>
{
public override void Run(Quit args)
{
Init.Quit();
}
}
}