wolf agent

This commit is contained in:
Guillaume LE CHARTIER 2024-05-29 12:17:19 +02:00
parent 6bf5f8b659
commit 8b2fa0f7f5
1 changed files with 14 additions and 0 deletions

14
src/backend/Wolf Normal file
View File

@ -0,0 +1,14 @@
package backend;
import java.awt.Color;
import java.util.ArrayList;
import java.util.Random;
public class Wolf extends Agent {
int hunger;
random rand;
Wolf(int x,int y){
super(x,y,Color.red)
}
}