officereso 1724997f4d Locomotion of player finished.
Signed-off-by: officereso <qrs01@snowtx.com>
2019-05-21 20:26:01 -05:00

19 lines
544 B
Java

package project.Sprites;
import project.Colors;
import project.Expo;
import java.applet.Applet;
import java.awt.*;
public class NPC3 extends Applet {
public static void make(Graphics g) {
Expo.setColor(g,colorsTemp.NPC3Body);
Expo.fillRectangle(g, 100, 100, 135, 160);
Expo.setColor(g,colorsTemp.Tires);
Expo.fillRectangle(g, 105, 108, 95, 128);
Expo.fillRectangle(g, 105, 135, 95, 155);
Expo.fillRectangle(g, 130, 108, 140, 128);
Expo.fillRectangle(g, 130, 135, 140, 155);
}
}