Add remove tag method to actor.

This commit is contained in:
Chandler Cox
2023-09-01 06:35:52 -05:00
parent bd750d2634
commit 5b5c298a96
2 changed files with 11 additions and 0 deletions

View File

@@ -476,6 +476,11 @@ void Actor::AddTag(const Tag& tag)
Tags.AddUnique(tag);
}
void Actor::RemoveTag(const Tag& tag)
{
Tags.Remove(tag);
}
PRAGMA_DISABLE_DEPRECATION_WARNINGS
const String& Actor::GetTag() const