25 lines
592 B
C#
25 lines
592 B
C#
using Axibug;
|
|
using Axibug.Event;
|
|
|
|
namespace Game
|
|
{
|
|
public class CameraShakeEventArgs : LogicEventArgs
|
|
{
|
|
public static readonly int EventId = typeof(CameraShakeEventArgs).GetHashCode();
|
|
|
|
/// <summary>
|
|
/// 获取加载数据表成功事件编号。
|
|
/// </summary>
|
|
public override int Id { get { return EventId; } }
|
|
|
|
public static CameraShakeEventArgs Create()
|
|
{
|
|
CameraShakeEventArgs s = ReferencePool.Acquire<CameraShakeEventArgs>();
|
|
return s;
|
|
}
|
|
|
|
public override void Clear()
|
|
{
|
|
}
|
|
}
|
|
} |