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