aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/los/numeros/GameEngine/Module.java
blob: 53b8e5eb41e29174c84ae986d5c6c02bbcde03ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package los.numeros.GameEngine;

public interface Module {
  /**
   * code to run when the game is started
   */
  public int init();

  /**
   * code to run when the game has ended
   */
  public int end();
}