summaryrefslogtreecommitdiff
path: root/server/src/main/java/kz/ilotterytea/frogartha/server/ServerHandlers.java
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-01-22 01:17:55 +0500
committerilotterytea <iltsu@alright.party>2025-01-22 01:38:15 +0500
commit5bee4a945e39cce294b79f0d55f84e16a0e43ca3 (patch)
tree9c03ebe35492aab6fd52698af360084fdc9245a3 /server/src/main/java/kz/ilotterytea/frogartha/server/ServerHandlers.java
parente745580e571725cef4f8e22302500ee521237786 (diff)
upd: moved some files
Diffstat (limited to 'server/src/main/java/kz/ilotterytea/frogartha/server/ServerHandlers.java')
-rw-r--r--server/src/main/java/kz/ilotterytea/frogartha/server/ServerHandlers.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/main/java/kz/ilotterytea/frogartha/server/ServerHandlers.java b/server/src/main/java/kz/ilotterytea/frogartha/server/ServerHandlers.java
index b6dcc3c..1cc0e57 100644
--- a/server/src/main/java/kz/ilotterytea/frogartha/server/ServerHandlers.java
+++ b/server/src/main/java/kz/ilotterytea/frogartha/server/ServerHandlers.java
@@ -4,11 +4,11 @@ import com.badlogic.gdx.math.Vector3;
import kz.ilotterytea.frogartha.FrogarthaConstants;
import kz.ilotterytea.frogartha.domain.Identity;
import kz.ilotterytea.frogartha.domain.PlayerState;
-import kz.ilotterytea.frogartha.domain.client.ChangedDirectionAction;
-import kz.ilotterytea.frogartha.domain.client.PlayerJumpAction;
+import kz.ilotterytea.frogartha.domain.actions.ChangedDirectionAction;
+import kz.ilotterytea.frogartha.domain.actions.PlayerJumpAction;
+import kz.ilotterytea.frogartha.domain.events.ChangedDirectionEvent;
+import kz.ilotterytea.frogartha.domain.events.PlayerJumpEvent;
import kz.ilotterytea.frogartha.domain.server.Acknowledge;
-import kz.ilotterytea.frogartha.events.ChangedDirectionEvent;
-import kz.ilotterytea.frogartha.events.PlayerJumpEvent;
import kz.ilotterytea.frogartha.exceptions.PlayerKickException;
import kz.ilotterytea.frogartha.utils.Logger;