aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/los/numeros/gameEngine/Module.java
blob: 04066159f3858cf32a93420b641c71b6d77f0e50 (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();
}