package los.numeros.ExampleGame;

import java.util.function.BooleanSupplier;

import los.numeros.ExampleGame.modules.*;
import los.numeros.GameEngine.Engine;
import los.numeros.GameEngine.Module;

public class Main implements Engine {
  BooleanSupplier running = () -> true;
  Module modules[];

  public Main() {
    /* put the modules in an array */
    modules[modules.length] = new ExampleModule();

    /* start the game */
    Engine.StartEngine(running, modules);
  }
}