From 4a4db471dac2435ad40f9fc3c5b6739362bc6eef Mon Sep 17 00:00:00 2001 From: Frog-That-code Date: Sat, 8 Jun 2024 18:45:20 -0400 Subject: begins the code for EPHS --- .../los/numeros/EPHS/modules/DeathWatcherModule.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/main/java/los/numeros/EPHS/modules/DeathWatcherModule.java (limited to 'src/main/java/los/numeros/EPHS/modules/DeathWatcherModule.java') 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; + } +} -- cgit v1.2.1