Action<MouseInput> HandleSupportPower(SupportPower sp) { return mi => { if (mi.Button == MouseButton.Left) sp.Activate(); }; }
Action<bool> HandleSupportPower(SupportPower sp) { return b => { if (b) sp.Activate(); }; }