Exemplo n.º 1
0
 /// <inheritdoc />
 public bool Remove(NetworkEntityGuid key)
 {
     DirtyChangesTracker.Remove(key);
     return(InternallyManagedMovementDictionary.Remove(key));
 }
Exemplo n.º 2
0
 /// <inheritdoc />
 public bool Remove(KeyValuePair <NetworkEntityGuid, IMovementData> item)
 {
     DirtyChangesTracker.Remove(item.Key);
     //Assume value is right
     return(InternallyManagedMovementDictionary.Remove(item.Key));
 }