aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/los/numeros/example/modules
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2024-06-03 20:33:38 -0400
committerSquibid <me@zacharyscheiman.com>2024-06-03 20:33:38 -0400
commit32bc1b99866518bda03409dd8c81a2756656f44f (patch)
tree06e47fd489bec72bf53450eeaa8540d016b245d2 /src/main/java/los/numeros/example/modules
parent6aff7f52908188f42310b8574ef87ef9a720daf2 (diff)
downloadlnm-32bc1b99866518bda03409dd8c81a2756656f44f.tar.gz
lnm-32bc1b99866518bda03409dd8c81a2756656f44f.tar.bz2
lnm-32bc1b99866518bda03409dd8c81a2756656f44f.zip
update game engine and example game
Diffstat (limited to 'src/main/java/los/numeros/example/modules')
-rw-r--r--src/main/java/los/numeros/example/modules/ExampleModule.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/main/java/los/numeros/example/modules/ExampleModule.java b/src/main/java/los/numeros/example/modules/ExampleModule.java
deleted file mode 100644
index 0e2d103..0000000
--- a/src/main/java/los/numeros/example/modules/ExampleModule.java
+++ /dev/null
@@ -1,17 +0,0 @@
-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;
- }
-}