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

import los.numeros.GameEngine.Module;

public class ExampleModule implements Module {
  @Override
  public int init()
  {
    return 0;
  }

  @Override
  public int end()
  {
    return 0;
  }
}