aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/los/numeros/HidersAndDiggers/Main.java
blob: bfcbf819e11d8e2b7765353dec587b7d29c2eed5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package los.numeros.HidersAndDiggers;

import java.util.function.BooleanSupplier;

import los.numeros.GameEngine.Engine;
import los.numeros.GameEngine.Module;

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

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