Server.QuestArrow.Update C# (CSharp) Méthode

Update() public méthode

public Update ( int x, int y ) : void
x int
y int
Résultat void
		public void Update( int x, int y )
		{
			if ( !m_Running )
				return;

			NetState ns = m_Mobile.NetState;

			if ( ns == null )
				return;

			if ( ns.HighSeas )
				ns.Send( new SetArrowHS( x, y, m_Target.Serial ) );
			else
				ns.Send( new SetArrow( x, y ) );
		}

Same methods

QuestArrow::Update ( ) : void