MouseDown() public method

public MouseDown ( int x, int y ) : bool
x int
y int
return bool
 public void MouseDown(int x, int y, int whichButton)
 {
     if (whichButton != 1)
     {
         return;
     }
     if (_colonizableFleetsThisTurn.Count > 0)
     {
         _colonizeScreen.MouseDown(x, y);
     }
     if (_newResearchTopicsNeeded.Count > 0)
     {
         _researchPrompt.MouseDown(x, y);
     }
 }