Server.Mobiles.BaseCreature.SetLocation C# (CSharp) 메소드

SetLocation() 공개 메소드

public SetLocation ( Point3D newLocation, bool isTeleport ) : void
newLocation Point3D
isTeleport bool
리턴 void
        public override void SetLocation( Point3D newLocation, bool isTeleport )
        {
            base.SetLocation( newLocation, isTeleport );

            if ( isTeleport && m_AI != null )
                m_AI.OnTeleported();
        }
BaseCreature