Exemplo n.º 1
0
 public CyclopsFireData(string fireGuid, string cyclopsGuid, CyclopsRooms room, int nodeIndex)
 {
     FireGuid    = fireGuid;
     CyclopsGuid = cyclopsGuid;
     Room        = room;
     NodeIndex   = nodeIndex;
 }
Exemplo n.º 2
0
 public CyclopsFireData(NitroxId fireId, NitroxId cyclopsId, CyclopsRooms room, int nodeIndex)
 {
     FireId    = fireId;
     CyclopsId = cyclopsId;
     Room      = room;
     NodeIndex = nodeIndex;
 }
Exemplo n.º 3
0
 public CyclopsFireCreated(NitroxId id, NitroxId cyclopsId, CyclopsRooms room, int nodeIndex)
 {
     FireCreatedData = new CyclopsFireData(id, cyclopsId, room, nodeIndex);
 }
Exemplo n.º 4
0
 public CyclopsFireCreated(string guid, string cyclopsGuid, CyclopsRooms room, int nodeIndex)
 {
     FireCreatedData = new CyclopsFireData(guid, cyclopsGuid, room, nodeIndex);
 }