Esempio n. 1
0
 public ZoneDescriptor(JSONObject data)
 {
     gatewayZoneCategory = (WormholeCategories)data.GetField("gatewayZoneCategory").i;
     zoneGuid            = data.GetField("zoneGuid").str;
     playerOwnerGuid     = data.GetField("playerOwnerGuid").str;
 }
Esempio n. 2
0
 public ZoneDescriptor(WormholeCategories gZc, string zG, string pG)
 {
     gatewayZoneCategory = gZc;
     zoneGuid            = zG;
     playerOwnerGuid     = pG;
 }