Пример #1
0
 public GHRequest(ClientGame clientgame, GHRequestType requesttype, string requeststring, uint attributes)
 {
     RequestingClientGame    = clientgame;
     RequestType             = requesttype;
     RequestString           = requeststring;
     RequestStringAttributes = attributes;
 }
Пример #2
0
 public GHWindow(GHWinType winType, GamePage gamePage, int winid)
 {
     _winType    = winType;
     _gamePage   = gamePage;
     _clientGame = gamePage.ClientGame;
     _winId      = winid;
 }
Пример #3
0
 public GHResponse(ClientGame clientgame, GHRequestType requesttype, GHWindow window, List <GHMenuItem> responselist)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     RequestingGHWindow   = window;
     SelectedMenuItems    = responselist;
 }
Пример #4
0
 public GHRequest(ClientGame clientgame, GHRequestType requesttype, string requeststring, string responses)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     RequestString        = requeststring;
     Responses            = responses;
 }
Пример #5
0
 public GHRequest(ClientGame clientgame, GHRequestType requesttype, GHWindow requestingGHWindow, GHMenuInfo menuinfo)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     RequestingGHWindow   = requestingGHWindow;
     RequestMenuInfo      = menuinfo;
 }
Пример #6
0
 public GHRequest(ClientGame clientgame, GHRequestType requesttype, int requestint, List <GHPutStrItem> strs)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     RequestInt           = requestint;
     RequestPutStrItems   = strs;
 }
Пример #7
0
 public GHResponse(ClientGame clientgame, GHRequestType requesttype, int x, int y, int mod)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     X   = x;
     Y   = y;
     Mod = mod;
 }
Пример #8
0
 public GHResponse(ClientGame clientgame, GHRequestType requesttype, int responseintvalue)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     ResponseIntValue     = responseintvalue;
 }
Пример #9
0
 public GHResponse(ClientGame clientgame, GHRequestType requesttype, string responsestringvalue)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     ResponseStringValue  = responsestringvalue;
 }
Пример #10
0
 public GHResponse(ClientGame clientgame, GHRequestType requesttype)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
 }
Пример #11
0
 public GHRequest(ClientGame clientgame, GHRequestType requesttype, DisplayScreenTextData data)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     ScreenTextData       = data;
 }
Пример #12
0
 public GHRequest(ClientGame clientgame, GHRequestType requesttype, AddContextMenuData data)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     ContextMenuData      = data;
 }
Пример #13
0
 public GHRequest(ClientGame clientgame, GHRequestType requesttype, List <GHMsgHistoryItem> msgHistory)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     MessageHistory       = msgHistory;
 }
Пример #14
0
 public GHRequest(ClientGame clientgame, GHRequestType requesttype, string requeststring)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     RequestString        = requeststring;
 }
Пример #15
0
 public GHRequest(ClientGame clientgame, GHRequestType requesttype, int requestint)
 {
     RequestingClientGame = clientgame;
     RequestType          = requesttype;
     RequestInt           = requestint;
 }