public GHRequest(ClientGame clientgame, GHRequestType requesttype, string requeststring, uint attributes) { RequestingClientGame = clientgame; RequestType = requesttype; RequestString = requeststring; RequestStringAttributes = attributes; }
public GHWindow(GHWinType winType, GamePage gamePage, int winid) { _winType = winType; _gamePage = gamePage; _clientGame = gamePage.ClientGame; _winId = winid; }
public GHResponse(ClientGame clientgame, GHRequestType requesttype, GHWindow window, List <GHMenuItem> responselist) { RequestingClientGame = clientgame; RequestType = requesttype; RequestingGHWindow = window; SelectedMenuItems = responselist; }
public GHRequest(ClientGame clientgame, GHRequestType requesttype, string requeststring, string responses) { RequestingClientGame = clientgame; RequestType = requesttype; RequestString = requeststring; Responses = responses; }
public GHRequest(ClientGame clientgame, GHRequestType requesttype, GHWindow requestingGHWindow, GHMenuInfo menuinfo) { RequestingClientGame = clientgame; RequestType = requesttype; RequestingGHWindow = requestingGHWindow; RequestMenuInfo = menuinfo; }
public GHRequest(ClientGame clientgame, GHRequestType requesttype, int requestint, List <GHPutStrItem> strs) { RequestingClientGame = clientgame; RequestType = requesttype; RequestInt = requestint; RequestPutStrItems = strs; }
public GHResponse(ClientGame clientgame, GHRequestType requesttype, int x, int y, int mod) { RequestingClientGame = clientgame; RequestType = requesttype; X = x; Y = y; Mod = mod; }
public GHResponse(ClientGame clientgame, GHRequestType requesttype, int responseintvalue) { RequestingClientGame = clientgame; RequestType = requesttype; ResponseIntValue = responseintvalue; }
public GHResponse(ClientGame clientgame, GHRequestType requesttype, string responsestringvalue) { RequestingClientGame = clientgame; RequestType = requesttype; ResponseStringValue = responsestringvalue; }
public GHResponse(ClientGame clientgame, GHRequestType requesttype) { RequestingClientGame = clientgame; RequestType = requesttype; }
public GHRequest(ClientGame clientgame, GHRequestType requesttype, DisplayScreenTextData data) { RequestingClientGame = clientgame; RequestType = requesttype; ScreenTextData = data; }
public GHRequest(ClientGame clientgame, GHRequestType requesttype, AddContextMenuData data) { RequestingClientGame = clientgame; RequestType = requesttype; ContextMenuData = data; }
public GHRequest(ClientGame clientgame, GHRequestType requesttype, List <GHMsgHistoryItem> msgHistory) { RequestingClientGame = clientgame; RequestType = requesttype; MessageHistory = msgHistory; }
public GHRequest(ClientGame clientgame, GHRequestType requesttype, string requeststring) { RequestingClientGame = clientgame; RequestType = requesttype; RequestString = requeststring; }
public GHRequest(ClientGame clientgame, GHRequestType requesttype, int requestint) { RequestingClientGame = clientgame; RequestType = requesttype; RequestInt = requestint; }