Exemplo n.º 1
0
 // Auras To Client
 public void DisplayAuras(CMEntityCollection auraCollection, IClientAPI client)
 {
     foreach (Object ent in auraCollection.Auras.Values)
     {
         ((AuraMetaEntity)ent).SendFullUpdate(client);
     }
 }
Exemplo n.º 2
0
 // Auras To
 public void DisplayAuras(CMEntityCollection auraCollection)
 {
     foreach (Object ent in auraCollection.Auras.Values)
     {
         ((AuraMetaEntity)ent).SendFullUpdateToAll();
     }
 }
Exemplo n.º 3
0
 // Entities to Client
 public void DisplayEntities(CMEntityCollection entityCollection, IClientAPI client)
 {
     foreach (Object ent in entityCollection.Entities.Values)
     {
         ((ContentManagementEntity)ent).SendFullDiffUpdate(client);
     }
 }
Exemplo n.º 4
0
 // Auras To Client
 public void DisplayAuras(CMEntityCollection auraCollection, IClientAPI client)
 {
     foreach (Object ent in auraCollection.Auras.Values)
         ((AuraMetaEntity)ent).SendFullUpdate(client);
 }
Exemplo n.º 5
0
 // Auras To
 public void DisplayAuras(CMEntityCollection auraCollection)
 {
     foreach (Object ent in auraCollection.Auras.Values)
         ((AuraMetaEntity)ent).SendFullUpdateToAll();
 }
Exemplo n.º 6
0
 // Entities to Client
 public void DisplayEntities(CMEntityCollection entityCollection, IClientAPI client)
 {
     foreach (Object ent in entityCollection.Entities.Values)
         ((ContentManagementEntity)ent).SendFullDiffUpdate(client);
 }