Exemplo n.º 1
0
 Action<MouseInput> HandleSupportPower(SupportPower sp)
 {
     return mi => { if (mi.Button == MouseButton.Left) sp.Activate(); };
 }
Exemplo n.º 2
0
		Action<bool> HandleSupportPower(SupportPower sp)
		{
			return b => { if (b) sp.Activate(); };
		}