Aka_s_Yasuo.Manager.EventManager.Dash_OnDash C# (CSharp) Method

Dash_OnDash() private static method

private static Dash_OnDash ( Obj_AI_Base sender, Dash e ) : void
sender Obj_AI_Base
e Dash
return void
        private static void Dash_OnDash(Obj_AI_Base sender, Dash.DashEventArgs e)
        {
            if (!sender.IsMe)
            {
                return;
            }
            Variables.isDash = true;
            Variables.posDash = e.EndPos;
        }