public static bool EqualsIgnoreInstanceId(string roomIdentifierString1, string roomIdentifierString2)
        {
            RoomIdentifier roomIdentifier  = new RoomIdentifier(roomIdentifierString1);
            RoomIdentifier roomIdentifier2 = new RoomIdentifier(roomIdentifierString2);

            return(roomIdentifier.world == roomIdentifier2.world && roomIdentifier.language == roomIdentifier2.language && roomIdentifier.zoneId.name == roomIdentifier2.zoneId.name && roomIdentifier.contentIdentifier == roomIdentifier2.contentIdentifier);
        }
Exemple #2
0
 public RoomPopulation(RoomIdentifier identifier, RoomPopulationScale populationScaled)
 {
     this.identifier       = identifier;
     this.populationScaled = populationScaled;
 }