ArrayList of Entites Random Movement
- by opiop65
I have an arraylist of entites that I want to move randomly. No matter what I do, they won't move. Here is my female class:
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Rectangle;
import java.util.Random;
import javax.swing.ImageIcon;
public class Female extends Entity {
static int femaleX = 0;
static int femaleY = 0;…