public bool StopWatchingRole(RoleWatch roleToRemove) { // Remove checks for non-existent elements return(RolesToWatch.Remove(roleToRemove)); }
public bool AddRoleToWatch(RoleWatch roleToAdd) { // Add already detects collisions return(RolesToWatch.Add(roleToAdd)); }