import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.applet.*;

public class Arrow extends FlyingUnit {


	int targetX, targetY;	// UڕWB
	int Nationality;

	public Arrow(int x, int y, Board board, Direction direction, int nationality, Unit target ) {
		super(x, y, board, direction, nationality, target );

		init();
	}

	public void init() {
		presentSpeed = 20;
	}

	public void show(Graphics g, int x, int y, Component view) {
		uge.show(g, x,y, this, view);
	}

}
