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();
}