aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/los/numeros/EPHS/modules/DeathWatcherModule.java
diff options
context:
space:
mode:
authorFrog-That-code <max@kawallski.localdomain>2024-06-08 18:45:20 -0400
committerFrog-That-code <max@kawallski.localdomain>2024-06-08 18:45:20 -0400
commit4a4db471dac2435ad40f9fc3c5b6739362bc6eef (patch)
tree0b59ab594abf3d9fbf6b97eb1d5cd4c00f8245a7 /src/main/java/los/numeros/EPHS/modules/DeathWatcherModule.java
parent67563e7f41aa1adfb3abbe2d4d6c3bb87c5c9cce (diff)
downloadlnm-4a4db471dac2435ad40f9fc3c5b6739362bc6eef.tar.gz
lnm-4a4db471dac2435ad40f9fc3c5b6739362bc6eef.tar.bz2
lnm-4a4db471dac2435ad40f9fc3c5b6739362bc6eef.zip
begins the code for EPHS
Diffstat (limited to '')
-rw-r--r--src/main/java/los/numeros/EPHS/modules/DeathWatcherModule.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/java/los/numeros/EPHS/modules/DeathWatcherModule.java b/src/main/java/los/numeros/EPHS/modules/DeathWatcherModule.java
new file mode 100644
index 0000000..86c7b41
--- /dev/null
+++ b/src/main/java/los/numeros/EPHS/modules/DeathWatcherModule.java
@@ -0,0 +1,17 @@
+package los.numeros.EPHS.modules;
+
+import los.numeros.GameEngine.Module;
+
+public class DeathWatcherModule implements Module {
+ @Override
+ public int init()
+ {
+ return 0;
+ }
+
+ @Override
+ public int end()
+ {
+ return 0;
+ }
+}