View Javadoc

1   package cz.cuni.amis.pogamut.defcon.agent.impl;
2   
3   /**
4    * Simple interface used in {@link DefConAgentLogicController} to update all
5    * registered listeners before calling game logic.
6    * 
7    * @author Radek 'Black_Hand' Pibil
8    * 
9    */
10  public interface ILogicUpdateListener {
11  	void update();
12  }