From 8a9a8d792e509986ff6bd47f49bcbdce1f347046 Mon Sep 17 00:00:00 2001 From: Squibid Date: Mon, 3 Jun 2024 20:08:54 -0400 Subject: implement game engine --- .../java/los/numeros/example/modules/ExampleModule.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/main/java/los/numeros/example/modules/ExampleModule.java (limited to 'src/main/java/los/numeros/example/modules') diff --git a/src/main/java/los/numeros/example/modules/ExampleModule.java b/src/main/java/los/numeros/example/modules/ExampleModule.java new file mode 100644 index 0000000..0e2d103 --- /dev/null +++ b/src/main/java/los/numeros/example/modules/ExampleModule.java @@ -0,0 +1,17 @@ +package los.numeros.example.modules; + +import los.numeros.gameEngine.Module; + +public class ExampleModule implements Module { + @Override + public int init() + { + return 0; + } + + @Override + public int end() + { + return 0; + } +} -- cgit v1.2.1