Aura.Channel.World.Entities.Creature.ResetPosition C# (CSharp) Method

ResetPosition() public method

Stops movement and resets creature to the given position.
public ResetPosition ( Position pos ) : void
pos Position
return void
		public void ResetPosition(Position pos)
		{
			this.SetPosition(pos.X, pos.Y);
			Send.SetLocation(this, pos.X, pos.Y);
		}