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