diff --git a/src/backend/Wolf b/src/backend/Wolf new file mode 100644 index 0000000..b97bc5b --- /dev/null +++ b/src/backend/Wolf @@ -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) + } +} \ No newline at end of file