using System;

namespace XMainClient
{
	internal class XCameraMotionEndEventArgs : XEventArgs
	{
		public XEntity Target = null;

		public bool CutSceneEnd = false;

		public XCameraMotionEndEventArgs()
		{
			this._eDefine = XEventDefine.XEvent_CameraMotionEnd;
		}

		public override void Recycle()
		{
			base.Recycle();
			this.Target = null;
			this.CutSceneEnd = false;
			XEventPool<XCameraMotionEndEventArgs>.Recycle(this);
		}
	}
}