Base game & server skeleton

This commit is contained in:
Thomas
2020-08-20 11:41:47 +02:00
parent 7edec4bc22
commit 932b591728
82 changed files with 480 additions and 390 deletions

View File

@@ -0,0 +1,13 @@
package gltronic.tronio.business;
import java.io.IOException;
import org.springframework.web.socket.WebSocketSession;
import gltronic.tronio.model.Player;
public interface IGameManager {
void login(WebSocketSession session) throws InterruptedException, IOException;
void leave(WebSocketSession session) throws InterruptedException, IOException;
void update(WebSocketSession session, Player player) throws InterruptedException, IOException;
}