Action.java :  » Game » sf-library » com » studiofortress » sf » structure » Java Open Source

Java Open Source » Game » sf library 
sf library » com » studiofortress » sf » structure » Action.java
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);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.