public static DropdownMenu CreateAndroid(IGUIMessages receiver, bool makeNetworkGUI)
 {
     DropdownMenu dropdown = new DropdownMenu(receiver,(int)(Screen.height*0.02),(int)(Screen.height*0.08), makeNetworkGUI);
     dropdown.positionOpen = new Rect(Screen.width-120,40,120,150);
     dropdown.positionClosed = new Rect(Screen.width-80,0,80,40);
     dropdown.SetUpButtons((int)(Screen.height*0.02),(int)(Screen.height*0.08));
     return dropdown;
 }