Add NetworkTransform component
This commit is contained in:
@@ -334,7 +334,7 @@ public:
|
||||
/// Removes the element at specified iterator position.
|
||||
/// </summary>
|
||||
/// <param name="i">The element iterator to remove.</param>
|
||||
void Remove(Iterator& i)
|
||||
void Remove(const Iterator& i)
|
||||
{
|
||||
if (IsEmpty())
|
||||
return;
|
||||
|
||||
@@ -665,7 +665,7 @@ public:
|
||||
/// </summary>
|
||||
/// <param name="i">The element iterator to remove.</param>
|
||||
/// <returns>True if cannot remove item from the collection because cannot find it, otherwise false.</returns>
|
||||
bool Remove(Iterator& i)
|
||||
bool Remove(const Iterator& i)
|
||||
{
|
||||
ASSERT(&i._collection == this);
|
||||
if (i)
|
||||
|
||||
@@ -496,7 +496,7 @@ public:
|
||||
/// </summary>
|
||||
/// <param name="i">The element iterator to remove.</param>
|
||||
/// <returns>True if cannot remove item from the collection because cannot find it, otherwise false.</returns>
|
||||
bool Remove(Iterator& i)
|
||||
bool Remove(const Iterator& i)
|
||||
{
|
||||
ASSERT(&i._collection == this);
|
||||
if (i)
|
||||
|
||||
Reference in New Issue
Block a user