aboutsummaryrefslogtreecommitdiff
path: root/src/esieequest/game/states/Callback.java
blob: 1fc0ebbd8c2802225c2e49014c9e9bd2aafab446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package esieequest.game.states;

/**
 * The Callback interface.
 * 
 * @author Pacien TRAN-GIRARD
 */
public interface Callback {

	/**
	 * Will be run after the execution of the function.
	 */
	public void call();

}