ACR_CreatureBehavior.GameObjectManager.GetAreaObject C# (CSharp) Method

GetAreaObject() public method

Get the C# area object for the given object id.
public GetAreaObject ( uint ObjectId ) : ACR_CreatureBehavior.AreaObject
ObjectId uint Supplies the object id to look up.
return ACR_CreatureBehavior.AreaObject
        public AreaObject GetAreaObject(uint ObjectId)
        {
            return (AreaObject)GetGameObject(ObjectId, GameObjectType.Area);
        }