package com.studiofortress.sf.structure;
/**
* This interface is for describing an action that can be run against a given
* Actor. Typically this will be passed to another class to call at the
* appropriate time.
*
* @author Joseph Lenton - JosephLenton@StudioFortress.com
*/
public interface Action<A extends Actor>
{
public void action(A actor);
}
|