Aura.Channel.World.Entities.Prop.HasTag C# (CSharp) Method

HasTag() public method

Returns true if prop's data has the tag.
public HasTag ( string tag ) : bool
tag string
return bool
		public override bool HasTag(string tag)
		{
			if (this.Data == null)
				return false;

			return this.Data.HasTag(tag);
		}