package hu.ppke.itk.hakta.hf03;

public abstract class Entity {
	
	String name, dwelling;
	int EoL;
	String species;
	String enemies;
	
	public Entity (String name, String dwelling, int EoL, String species) {
		this.name = name;
		this.dwelling = dwelling;
		this.EoL = EoL;
		this.species = species;
	}
	
	public abstract boolean friends(Entity who);
	
	public void move (String newDwelling) {
		dwelling = newDwelling;
	}

}
