package edu.calpoly.csc480.Corral.Agent.Util;

import edu.calpoly.csc480.Corral.Tile.*;

public interface LifeReceiver {
	abstract public void receive(BaseTile tile, State state);
}