diff options
author | Squibid <me@zacharyscheiman.com> | 2024-06-03 20:08:54 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-06-03 20:08:54 -0400 |
commit | 8a9a8d792e509986ff6bd47f49bcbdce1f347046 (patch) | |
tree | 44cdae81c2c8ceaf38e941eea7c2249f26e2344d /src/main/java/los/numeros/example/modules | |
parent | bbb0d1d79f70fbfca377d1f2c4f558d35096a851 (diff) | |
download | lnm-8a9a8d792e509986ff6bd47f49bcbdce1f347046.tar.gz lnm-8a9a8d792e509986ff6bd47f49bcbdce1f347046.tar.bz2 lnm-8a9a8d792e509986ff6bd47f49bcbdce1f347046.zip |
implement game engine
Diffstat (limited to '')
-rw-r--r-- | src/main/java/los/numeros/example/modules/ExampleModule.java | 17 |
1 files changed, 17 insertions, 0 deletions
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; + } +} |